module Giraffi
Constants
- Version
Public Class Methods
method_missing(method, *args, &blocks)
click to toggle source
Delegate to Giraffi::Client
Calls superclass method
# File lib/giraffi.rb, line 17 def method_missing(method, *args, &blocks) return super unless new.respond_to?(method) new.send(method, *args, &block) end
new(options={})
click to toggle source
Alias for Giraffi::Client.new
@param options [Hash] The APIKEY allows you to access the Giraffi
RESTful API @return [Giraffi::Client]
# File lib/giraffi.rb, line 12 def new(options={}) Giraffi::Client.new(options) end
respond_to?(method, include_private=false)
click to toggle source
Calls superclass method
# File lib/giraffi.rb, line 22 def respond_to?(method, include_private=false) new.respond_to?(method, include_private) || super(method, include_private) end