Module: Mongoid::Extensions::Integer

Defined in:
build/mongoid-7.3/lib/mongoid/extensions/integer.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__mongoize_time__Time | ActiveSupport::TimeWithZone

Converts the integer into a time as the number of seconds since the epoch.

Examples:

Convert the integer to a time.

1335532685.__mongoize_time__

Returns:

  • (Time | ActiveSupport::TimeWithZone)

    The time.

Since:

  • 3.0.0



16
17
18
# File 'build/mongoid-7.3/lib/mongoid/extensions/integer.rb', line 16

def __mongoize_time__
  ::Time.configured.at(self)
end

#numeric?true

Is the integer a number?

Examples:

Is the object a number?.

object.numeric?

Returns:

  • (true)

    Always true.

Since:

  • 3.0.0



28
29
30
# File 'build/mongoid-7.3/lib/mongoid/extensions/integer.rb', line 28

def numeric?
  true
end

#unconvertable_to_bson?true

Is the object not to be converted to bson on criteria creation?

Examples:

Is the object unconvertable?

object.unconvertable_to_bson?

Returns:

  • (true)

    If the object is unconvertable.

Since:

  • 2.2.1



40
41
42
# File 'build/mongoid-7.3/lib/mongoid/extensions/integer.rb', line 40

def unconvertable_to_bson?
  true
end