class Spout::Models::Empty

Used for empty values, these values exist in that the column is defined in the CSV, however the cell is blank. This is to differentiate this value from nil, where the subject row exists, but the column for the is not specified.

Public Instance Methods

to_f() click to toggle source
# File lib/spout/models/empty.rb, line 10
def to_f
  self
end
to_s() click to toggle source
# File lib/spout/models/empty.rb, line 14
def to_s
  "Empty"
end