Class: SearchCopGrammar::Attributes::Boolean
- Inherits:
-
WithoutMatches
- Object
- Base
- WithoutMatches
- SearchCopGrammar::Attributes::Boolean
- Defined in:
- lib/search_cop_grammar/attributes.rb
Instance Attribute Summary
Attributes inherited from Base
#attribute, #column_name, #field_names, #options, #table_alias
Instance Method Summary collapse
Methods inherited from WithoutMatches
Methods inherited from Base
#compatible?, #fulltext?, #initialize, #method_missing, #respond_to_missing?
Constructor Details
This class inherits a constructor from SearchCopGrammar::Attributes::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class SearchCopGrammar::Attributes::Base
Instance Method Details
#map(value) ⇒ Object
293 294 295 296 297 298 |
# File 'lib/search_cop_grammar/attributes.rb', line 293 def map(value) return true if value.to_s =~ /^(1|true|yes)$/i return false if value.to_s =~ /^(0|false|no)$/i raise SearchCop::IncompatibleDatatype, "Incompatible datatype for #{value}" end |