class BooleanField
Public Class Methods
new(*args)
click to toggle source
Calls superclass method
Field::new
# File lib/quickbase_record/fields/boolean_field.rb, line 2 def initialize(*args) super(*args) end
Public Instance Methods
convert(value)
click to toggle source
# File lib/quickbase_record/fields/boolean_field.rb, line 6 def convert(value) value == "1" end