module TINAMI
Constants
- VERSION
Public Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Delegate to {TINAMI::Client}
Calls superclass method
# File lib/tinami.rb, line 17 def self.method_missing(method_name, *args, &block) return super unless new.respond_to?(method_name) new.send(method_name, *args, &block) end
new(options = {})
click to toggle source
Alias for TINAMI::Client.new
@return [TINAMI::Client]
# File lib/tinami.rb, line 12 def self.new(options = {}) TINAMI::Client.new(options) end
respond_to?(method_name, include_private = false)
click to toggle source
Delegate to {TINAMI::Client}
Calls superclass method
# File lib/tinami.rb, line 23 def self.respond_to?(method_name, include_private = false) return new.respond_to?(method_name, include_private) || super end