Sha256: f6a5819d9c095319ea39f7aa6e7b28be815864e1749340b0af6ce87a69758a51

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 KB

Contents

# This is the class loader, for use as "include Redis::Objects::Hashes"
# For the object itself, see "Redis::Hash"
require 'redis/hash_key'
class Redis
  module Objects
    module Hashes
      def self.included(klass)
        klass.send :include, InstanceMethods
        klass.extend ClassMethods
      end

      # Class methods that appear in your class when you include Redis::Objects.
      module ClassMethods
        # Define a new hash key.  It will function like a regular instance
        # method, so it can be used alongside ActiveRecord, DataMapper, etc.
        def hash_key(name, options={})
          redis_objects[name.to_sym] = options.merge(:type => :dict)

          mod = Module.new do
            define_method(name) do
              instance_variable_get("@#{name}") or
                instance_variable_set("@#{name}",
                  Redis::HashKey.new(
                    redis_field_key(name), redis_field_redis(name), redis_objects[name.to_sym]
                  )
                )
            end
          end

          if options[:global]
            extend mod

            # dispatch to class methods
            define_method(name) do
              self.class.public_send(name)
            end
          else
            include mod
          end
        end
      end

      # Instance methods that appear in your class when you include Redis::Objects.
      module InstanceMethods
      end
    end
  end
end


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
redis-objects-1.0.1 lib/redis/objects/hashes.rb
redis-objects-1.0.0 lib/redis/objects/hashes.rb
redis-objects-0.9.1 lib/redis/objects/hashes.rb
redis-objects-0.9.0 lib/redis/objects/hashes.rb