class

ActiveModel::Type::BigInteger

v8.1.1 - Show latest stable - Superclass: ActiveModel::Type::Integer

Active Model BigInteger Type

Attribute type for integers that can be serialized to an unlimited number of bytes. This type is registered under the :big_integer key.

class Person
  include ActiveModel::Attributes

  attribute :id, :big_integer
end

person = Person.new
person.id = "18_000_000_000"

person.id # => 18000000000

All casting and serialization are performed in the same way as the standard ActiveModel::Type::Integer type.

Files

  • activemodel/lib/active_model/type/big_integer.rb