lib/em-twitter/client.rb in em-twitter-0.3.3 vs lib/em-twitter/client.rb in em-twitter-0.3.4
- old
+ new
@@ -112,11 +112,11 @@
def method_missing(method, *args, &block)
return super unless @connection.respond_to?(method)
@connection.send(method, *args, &block)
end
- def respond_to?(method, include_private=false)
- @connection.respond_to?(method, include_private) || super(method, include_private)
+ def respond_to?(method, include_all=false)
+ @connection.respond_to?(method, include_all) || super(method, include_all)
end
private
def validate_client