Class: ActiveModel::Type::Integer
- Includes:
- Helpers::Numeric
- Defined in:
- activemodel/lib/active_model/type/integer.rb
Overview
Attribute type for integer representation. This type is registered under the :integer
key.
class Person
include ActiveModel::Attributes
attribute :age, :integer
end
Values are cast using their to_i
method, except for blank strings, which are cast to nil
. If a to_i
method is not defined or raises an error, the value will be cast to nil
.
person = Person.new
person.age = "18"
person.age # => 18
person.age = ""
person.age # => nil
person.age = :not_an_integer
person.age # => nil (because Symbol does not define #to_i)
Serialization also works under the same principle. Non-numeric strings are serialized as nil
, for example.
Serialization also validates that the integer can be stored using a limited number of bytes. If it cannot, an ActiveModel::RangeError will be raised. The default limit is 4 bytes, and can be customized when declaring an attribute:
class Person
include ActiveModel::Attributes
attribute :age, :integer, limit: 6
end
Direct Known Subclasses
Constant Summary collapse
- DEFAULT_LIMIT =
Column storage size in bytes. 4 bytes means an integer as opposed to smallint etc.
4
Instance Attribute Summary
Attributes inherited from Value
Instance Method Summary collapse
- #deserialize(value) ⇒ Object
-
#initialize ⇒ Integer
constructor
A new instance of Integer.
- #serializable?(value) ⇒ Boolean
- #serialize(value) ⇒ Object
-
#serialize_cast_value(value) ⇒ Object
:nodoc:.
- #type ⇒ Object
Methods included from Helpers::Numeric
Methods inherited from Value
#==, #as_json, #assert_valid_value, #binary?, #cast, #changed?, #changed_in_place?, #force_equality?, #hash, #immutable_value, #map, #type_cast_for_schema, #value_constructed_by_mass_assignment?
Constructor Details
#initialize ⇒ Integer
Returns a new instance of Integer.
49 50 51 52 |
# File 'activemodel/lib/active_model/type/integer.rb', line 49 def initialize(**) super @range = min_value...max_value end |
Instance Method Details
#deserialize(value) ⇒ Object
58 59 60 61 |
# File 'activemodel/lib/active_model/type/integer.rb', line 58 def deserialize(value) return if value.blank? value.to_i end |
#serializable?(value) ⇒ Boolean
72 73 74 75 76 77 78 |
# File 'activemodel/lib/active_model/type/integer.rb', line 72 def serializable?(value) cast_value = cast(value) in_range?(cast_value) || begin yield cast_value if block_given? false end end |
#serialize(value) ⇒ Object
63 64 65 66 |
# File 'activemodel/lib/active_model/type/integer.rb', line 63 def serialize(value) return if value.is_a?(::String) && non_numeric_string?(value) ensure_in_range(super) end |
#serialize_cast_value(value) ⇒ Object
:nodoc:
68 69 70 |
# File 'activemodel/lib/active_model/type/integer.rb', line 68 def serialize_cast_value(value) # :nodoc: ensure_in_range(value) end |
#type ⇒ Object
54 55 56 |
# File 'activemodel/lib/active_model/type/integer.rb', line 54 def type :integer end |