# This is the class loader, for use as "include Redis::Objects::Sets" # For the object itself, see "Redis::Set" require 'redis/set' class Redis module Objects module Sets 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 list. It will function like a regular instance # method, so it can be used alongside ActiveRecord, DataMapper, etc. def set(name, options={}) redis_objects[name.to_sym] = options.merge(:type => :set) mod = Module.new do define_method(name) do instance_variable_get("@#{name}") or instance_variable_set("@#{name}", Redis::Set.new( redis_field_key(name), redis, 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