lib/async/debug/monitor.rb in async-1.23.0 vs lib/async/debug/monitor.rb in async-1.24.0

- old
+ new

@@ -29,15 +29,15 @@ def close @selector.deregister(@monitor.io) @monitor.close end - def method_missing(*args, &block) - @monitor.send(*args) + def method_missing(*arguments, &block) + @monitor.send(*arguments) end - def respond_to?(*args) - @monitor.respond_to?(*args) + def respond_to?(*arguments) + @monitor.respond_to?(*arguments) end def inspect "\#<#{self.class} io=#{@monitor.io.inspect} interests=#{@monitor.interests.inspect} readiness=#{@monitor.readiness.inspect}>" end