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