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
171 172 173 174 |
# File 'lib/suggestgrid/api_helper.rb', line 171 def to_bool return true if self == true || self.to_s.strip =~ /^(true|yes|y|1)$/i return false end |