Sha256: 5c29c7d9fabea379cb1badf9da46e737b4879297ba49876b520fb81eca08f8b9

Contents?: true

Size: 764 Bytes

Versions: 193

Compression:

Stored size: 764 Bytes

Contents

module ActiveRecord
  module AttributeMethods
    module BeforeTypeCast
      extend ActiveSupport::Concern

      included do
        attribute_method_suffix "_before_type_cast"
      end

      def read_attribute_before_type_cast(attr_name)
        @attributes[attr_name]
      end

      # Returns a hash of attributes before typecasting and deserialization.
      def attributes_before_type_cast
        @attributes
      end

      private

      # Handle *_before_type_cast for method_missing.
      def attribute_before_type_cast(attribute_name)
        if attribute_name == 'id'
          read_attribute_before_type_cast(self.class.primary_key)
        else
          read_attribute_before_type_cast(attribute_name)
        end
      end
    end
  end
end

Version data entries

193 entries across 162 versions & 15 rubygems

Version Path
challah-0.2.0 vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/before_type_cast.rb
sskirby-activerecord-3.2.1 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.2.1 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.2.0 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.2.0.rc2 lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.10 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.9 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.2.0.rc1 lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.8 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.7 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.6 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.5 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.4 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.3 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.4.2 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.1.3 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.1.2 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.1.2.rc2 lib/active_record/attribute_methods/before_type_cast.rb
activerecord-3.1.2.rc1 lib/active_record/attribute_methods/before_type_cast.rb
dirty_history-0.3.0 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb