Class: Symbol
- Inherits:
-
Object
- Object
- Symbol
- Defined in:
- lib/parse/model/model.rb,
lib/parse/query/ordering.rb
Overview
Extension to add all the operator instance methods to the Symbol classe
Instance Method Summary collapse
- #camelize ⇒ Object
-
#columnize ⇒ String
A lower-first-camelcased version of the symbol.
- #singularize ⇒ Object
- #to_parse_class(singularize: false) ⇒ Object
Instance Method Details
#camelize ⇒ Object
217 218 219 |
# File 'lib/parse/model/model.rb', line 217 def camelize to_s.camelize end |
#columnize ⇒ String
Returns a lower-first-camelcased version of the symbol.
207 208 209 |
# File 'lib/parse/model/model.rb', line 207 def columnize to_s.columnize.to_sym end |
#singularize ⇒ Object
212 213 214 |
# File 'lib/parse/model/model.rb', line 212 def singularize to_s.singularize end |
#to_parse_class(singularize: false) ⇒ Object
222 223 224 |
# File 'lib/parse/model/model.rb', line 222 def to_parse_class(singularize: false) to_s.to_parse_class(singularize: singularize) end |