module Statuspageio
Constants
- VERSION
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Calls superclass method
# File lib/statuspageio.rb, line 12 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end
new(options = {})
click to toggle source
# File lib/statuspageio.rb, line 8 def new(options = {}) Statuspageio::Client.new(options) end
respond_to?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/statuspageio.rb, line 17 def respond_to?(method_name, include_private = false) new.respond_to?(method_name, include_private) || super(method_name, include_private) end
respond_to_missing?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/statuspageio.rb, line 21 def respond_to_missing?(method_name, include_private = false) new.respond_to?(method_name, include_private) || super(method_name, include_private) end