File: empty.rb

package info (click to toggle)
ruby-roo 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,216 kB
  • sloc: ruby: 6,529; xml: 88; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

module Roo
  class Excelx
    class Cell
      class Empty < Cell::Base
        attr_reader :value, :formula, :format, :cell_type, :cell_value, :coordinate

        attr_reader_with_default default_type: nil, style: nil

        def initialize(coordinate)
          @coordinate = coordinate
        end

        def empty?
          true
        end
      end
    end
  end
end