lib/fasten/std_thread_proxy.rb in fasten-0.10.0 vs lib/fasten/std_thread_proxy.rb in fasten-0.12.0

- old
+ new

@@ -14,10 +14,10 @@ def respond_to_missing?(name, include_private = false) target = Thread.current[:FASTEN_STD_THREAD_PROXY] || @original target.send :respond_to_missing?, name, include_private end - def method_missing(method, *args, &block) # rubocop:disable MethodMissingSuper + def method_missing(method, *args, &block) # rubocop:disable Style/MethodMissingSuper target = Thread.current[:FASTEN_STD_THREAD_PROXY] || @original target.send method, *args, &block end class << self