Module: Protocol::Redis::Methods

Defined in:
lib/protocol/redis/methods.rb,
lib/protocol/redis/methods/lists.rb,
lib/protocol/redis/methods/hashes.rb,
lib/protocol/redis/methods/server.rb,
lib/protocol/redis/methods/generic.rb,
lib/protocol/redis/methods/strings.rb,
lib/protocol/redis/methods/counting.rb,
lib/protocol/redis/methods/connection.rb,
lib/protocol/redis/methods/geospatial.rb

Defined Under Namespace

Modules: Connection, Counting, Generic, Geospatial, Hashes, Lists, Server, Strings

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/protocol/redis/methods.rb', line 37

def self.included(klass)
	klass.include Methods::Generic
	klass.include Methods::Connection
	klass.include Methods::Server
	klass.include Methods::Geospatial
	
	klass.include Methods::Counting
	
	klass.include Methods::Hashes
	klass.include Methods::Lists
	klass.include Methods::Strings
end