module ProductWars
Attributes
domain[RW]
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Calls superclass method
# File lib/productwars.rb, line 10 def self.method_missing(method, *args, &block) return super unless Client.respond_to?(method) Client.dispatch(method, *args, &block) end
respond_to?(method)
click to toggle source
Calls superclass method
# File lib/productwars.rb, line 15 def self.respond_to?(method) return Client.respond_to?(method) || super end