Class: ActiveModel::Type::String

Inherits:
ImmutableString show all
Defined in:
activemodel/lib/active_model/type/string.rb

Overview

:nodoc:

Direct Known Subclasses

ActiveRecord::Type::Text

Instance Attribute Summary

Attributes inherited from Value

#limit, #precision, #scale

Instance Method Summary collapse

Methods inherited from ImmutableString

#serialize, #type

Methods inherited from Value

#==, #assert_valid_value, #binary?, #cast, #changed?, #deserialize, #force_equality?, #hash, #initialize, #map, #serialize, #type, #type_cast_for_schema, #value_constructed_by_mass_assignment?

Constructor Details

This class inherits a constructor from ActiveModel::Type::Value

Instance Method Details

#changed_in_place?(raw_old_value, new_value) ⇒ Boolean

Returns:



8
9
10
11
12
# File 'activemodel/lib/active_model/type/string.rb', line 8

def changed_in_place?(raw_old_value, new_value)
  if new_value.is_a?(::String)
    raw_old_value != new_value
  end
end