lib/hari/keys.rb in hari-0.0.4 vs lib/hari/keys.rb in hari-0.0.5
- old
+ new
@@ -1,9 +1,14 @@
module Hari
module Keys
+
+ TYPES = %w(string list hash set sorted_set)
+
autoload :Key, 'hari/keys/key'
+ autoload :Hash, 'hari/keys/hash'
autoload :List, 'hari/keys/list'
autoload :Set, 'hari/keys/set'
autoload :SortedSet, 'hari/keys/sorted_set'
autoload :String, 'hari/keys/string'
+
end
end