Method: AvaTax.method_missing

Defined in:
lib/avatax.rb

.method_missing(method, *args, &block) ⇒ Object

Delegate to AvaTax::Client



16
17
18
19
# File 'lib/avatax.rb', line 16

def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end