Module: Humanoid::Extensions::Boolean::Conversions
- Included in:
- Boolean
- Defined in:
- lib/humanoid/extensions/boolean/conversions.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#get(value) ⇒ Object
10 11 12 |
# File 'lib/humanoid/extensions/boolean/conversions.rb', line 10 def get(value) value end |
#set(value) ⇒ Object
6 7 8 9 |
# File 'lib/humanoid/extensions/boolean/conversions.rb', line 6 def set(value) val = value.to_s val == "true" || val == "1" end |