Method: Formi9.method_missing

Defined in:
lib/formi9.rb

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

Delegate to Formi9::Client



17
18
19
20
# File 'lib/formi9.rb', line 17

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