lib/redis/objects/hashes.rb in redis-objects-0.6.1 vs lib/redis/objects/hashes.rb in redis-objects-0.7.0
- old
+ new
@@ -12,10 +12,10 @@
# 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)
+ redis_objects[name.to_sym] = options.merge(:type => :dict)
klass_name = '::' + self.name
if options[:global]
instance_eval <<-EndMethods
def #{name}
@#{name} ||= Redis::HashKey.new(redis_field_key(:#{name}), #{klass_name}.redis, #{klass_name}.redis_objects[:#{name}])