lib/nest.rb in nest-3.1.2 vs lib/nest.rb in nest-3.2.0

- old
+ new

@@ -31,11 +31,11 @@ end def redis @rc end - + def hash @ns.hash end def to_ary @@ -53,9 +53,21 @@ @ns.to_json(*args) end def call(command, *args) @rc.call(command, to_s, *args) + end + + def call!(command, *args) + @rc.call!(command, to_s, *args) + end + + def queue(command, *args) + @rc.queue(command, to_s, *args) + end + + def commit + @rc.commit end def inspect @ns.inspect end