Sha256: 749e607fdeb0bcb05789ab9e5585c990b6bbd4ffa55e1cdcb7dab3e2f3893d9a

Contents?: true

Size: 1.83 KB

Versions: 76

Compression:

Stored size: 1.83 KB

Contents

module ActiveRecord
  # Store gives you a thin wrapper around serialize for the purpose of storing hashes in a single column.
  # It's like a simple key/value store backed into your record when you don't care about being able to
  # query that store outside the context of a single record.
  #
  # You can then declare accessors to this store that are then accessible just like any other attribute
  # of the model. This is very helpful for easily exposing store keys to a form or elsewhere that's
  # already built around just accessing attributes on the model.
  #
  # Make sure that you declare the database column used for the serialized store as a text, so there's
  # plenty of room.
  #
  # Examples:
  #
  #   class User < ActiveRecord::Base
  #     store :settings, accessors: [ :color, :homepage ]
  #   end
  #   
  #   u = User.new(color: 'black', homepage: '37signals.com')
  #   u.color                          # Accessor stored attribute
  #   u.settings[:country] = 'Denmark' # Any attribute, even if not specified with an accessor
  #
  #   # Add additional accessors to an existing store through store_accessor
  #   class SuperUser < User
  #     store_accessor :settings, :privileges, :servants
  #   end
  module Store
    extend ActiveSupport::Concern
  
    module ClassMethods
      def store(store_attribute, options = {})
        serialize store_attribute, Hash
        store_accessor(store_attribute, options[:accessors]) if options.has_key? :accessors
      end

      def store_accessor(store_attribute, *keys)
        Array(keys).flatten.each do |key|
          define_method("#{key}=") do |value|
            send(store_attribute)[key] = value
            send("#{store_attribute}_will_change!")
          end
    
          define_method(key) do
            send(store_attribute)[key]
          end
        end
      end
    end
  end
end

Version data entries

76 entries across 54 versions & 7 rubygems

Version Path
challah-rolls-0.2.0 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-rolls-0.2.0 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/store.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activerecord-3.2.8/lib/active_record/store.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-0.8.3 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/store.rb
challah-0.8.1 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/store.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-rolls-0.1.0 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-rolls-0.1.0 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/store.rb
challah-0.8.0.pre vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-0.7.1 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-0.7.0 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
challah-0.7.0.pre2 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
activerecord-3.2.8 lib/active_record/store.rb
activerecord-3.2.8.rc2 lib/active_record/store.rb
challah-0.7.0.pre vendor/bundle/gems/activerecord-3.2.7/lib/active_record/store.rb
activerecord-3.2.8.rc1 lib/active_record/store.rb
activerecord-3.2.7 lib/active_record/store.rb
activerecord-3.2.7.rc1 lib/active_record/store.rb
challah-0.6.2 vendor/bundle/gems/activerecord-3.2.5/lib/active_record/store.rb