# 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