module Gems::AbstractClient::ClassMethods
Public Instance Methods
Delegate to Gems::Client
Calls superclass method
# File lib/gems/abstract_client.rb, line 13 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end
# File lib/gems/abstract_client.rb, line 8 def new(options = {}) raise NotImplementedError.new end
Calls superclass method
# File lib/gems/abstract_client.rb, line 18 def respond_to?(method_name, include_private = false) new.respond_to?(method_name, include_private) || super(method_name, include_private) end
Calls superclass method
# File lib/gems/abstract_client.rb, line 22 def respond_to_missing?(method_name, include_private = false) new.respond_to?(method_name, include_private) || super(method_name, include_private) end