Sha256: 8c261a2b11fa70d8fa6161920f7bac79cf8e35e7c39c61288cbfc82a7bf86a86

Contents?: true

Size: 477 Bytes

Versions: 52

Compression:

Stored size: 477 Bytes

Contents

module ActiveRecord
  module Type
    module Mutable # :nodoc:
      def type_cast_from_user(value)
        type_cast_from_database(type_cast_for_database(value))
      end

      # +raw_old_value+ will be the `_before_type_cast` version of the
      # value (likely a string). +new_value+ will be the current, type
      # cast value.
      def changed_in_place?(raw_old_value, new_value)
        raw_old_value != type_cast_for_database(new_value)
      end
    end
  end
end

Version data entries

52 entries across 51 versions & 8 rubygems

Version Path
activerecord-4.2.11.3 lib/active_record/type/mutable.rb
activerecord-4.2.11.2 lib/active_record/type/mutable.rb
activerecord-4.2.11.1 lib/active_record/type/mutable.rb
activerecord-4.2.11 lib/active_record/type/mutable.rb
activerecord-4.2.10 lib/active_record/type/mutable.rb
activerecord-4.2.10.rc1 lib/active_record/type/mutable.rb
activerecord-4.2.9 lib/active_record/type/mutable.rb
activerecord-4.2.9.rc2 lib/active_record/type/mutable.rb
activerecord-4.2.9.rc1 lib/active_record/type/mutable.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activerecord-4.2.8/lib/active_record/type/mutable.rb
activerecord-4.2.8 lib/active_record/type/mutable.rb
activerecord-4.2.8.rc1 lib/active_record/type/mutable.rb
activerecord-4.2.7.1 lib/active_record/type/mutable.rb
activerecord-4.2.7 lib/active_record/type/mutable.rb
activerecord-4.2.7.rc1 lib/active_record/type/mutable.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-4.2.6/lib/active_record/type/mutable.rb
activerecord-4.2.6 lib/active_record/type/mutable.rb
activerecord-4.2.6.rc1 lib/active_record/type/mutable.rb
activerecord-4.2.5.2 lib/active_record/type/mutable.rb
activejob-lock-0.0.2 rails/activerecord/lib/active_record/type/mutable.rb