module Dirigible
Constants
- VERSION
Public Class Methods
api(options = {})
click to toggle source
# File lib/dirigible.rb, line 26 def self.api(options = {}) Dirigible::API.new(options) end
method_missing(method, *args, &block)
click to toggle source
Calls superclass method
# File lib/dirigible.rb, line 30 def self.method_missing(method, *args, &block) return super unless api.respond_to?(method) api.send(method, *args, &block) end
respond_to?(method)
click to toggle source
Calls superclass method
# File lib/dirigible.rb, line 35 def self.respond_to?(method) api.respond_to?(method) || super end