Module: Mongoid::Extensions::Integer
- Defined in:
- lib/mongoid/extensions/integer.rb
Overview
Adds type-casting behavior to Integer class.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Converts the integer into a time as the number of seconds since the epoch.
-
#numeric? ⇒ true
Is the integer a number?.
- #unconvertable_to_bson? ⇒ true deprecated Deprecated.
Instance Method Details
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Converts the integer into a time as the number of seconds since the epoch.
16 17 18 |
# File 'lib/mongoid/extensions/integer.rb', line 16 def __mongoize_time__ ::Time.zone.at(self) end |
#numeric? ⇒ true
Is the integer a number?
26 27 28 |
# File 'lib/mongoid/extensions/integer.rb', line 26 def numeric? true end |
#unconvertable_to_bson? ⇒ true
Deprecated.
Is the object not to be converted to bson on criteria creation?
37 38 39 |
# File 'lib/mongoid/extensions/integer.rb', line 37 def unconvertable_to_bson? true end |