lib/async/redis/context/nested.rb in async-redis-0.3.3 vs lib/async/redis/context/nested.rb in async-redis-0.3.4

- old
+ new

@@ -17,13 +17,21 @@ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +require_relative '../methods/strings' +require_relative '../methods/keys' +require_relative '../methods/lists' + module Async module Redis module Context class Nested + include Methods::Strings + include Methods::Keys + include Methods::Lists + def initialize(pool, *args) @pool = pool @connection = pool.acquire end