Module: Mongoid::Extensions::Symbol

Defined in:
lib/mongoid/extensions/symbol.rb

Overview

Adds type-casting behavior to Symbol class.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#mongoid_id?true | false

Is the symbol a valid value for a Mongoid id?

Examples:

Is the string an id value?

:_id.mongoid_id?

Returns:

  • (true | false)

    If the symbol is :id or :_id.



16
17
18
# File 'lib/mongoid/extensions/symbol.rb', line 16

def mongoid_id?
  to_s.mongoid_id?
end