Module: ToBoolean
- Included in:
- FalseClass, NilClass, Numeric, String, TrueClass
- Defined in:
- lib/suggestgrid/api_helper.rb
Overview
Extend types to support to_bool.
Instance Method Summary collapse
Instance Method Details
#to_bool ⇒ Object
258 259 260 261 |
# File 'lib/suggestgrid/api_helper.rb', line 258 def to_bool return true if self == true || to_s.strip =~ /^(true|yes|y|1)$/i false end |