module Nimbu
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Delegate to Nimbu::Client
Calls superclass method
# File lib/nimbu-api.rb, line 54 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end
new(options = {}, &block)
click to toggle source
# File lib/nimbu-api.rb, line 48 def new(options = {}, &block) Nimbu::Client.new(options, &block) end
respond_to?(method, include_private = false)
click to toggle source
Calls superclass method
# File lib/nimbu-api.rb, line 59 def respond_to?(method, include_private = false) new.respond_to?(method, include_private) || super(method, include_private) end