class TINAMI::Client

Wrapper for the TINAMI REST API

@see www.tinami.com/api/

Public Class Methods

new(options = {}) click to toggle source
# File lib/tinami/client.rb, line 20
def initialize(options = {})
  options = TINAMI.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end