Method: Buxfer.method_missing

Defined in:
lib/buxfer/base.rb

.method_missing(method, *args) ⇒ Object

:nodoc:



11
12
13
14
15
16
17
# File 'lib/buxfer/base.rb', line 11

def self.method_missing(method, *args) #:nodoc:
  if connection.respond_to?(method)
    connection.send(method, *args)
  else
    super
  end
end