class Cha::Client

Wrapper for the ChatWork REST API

@see developer.chatwork.com/ja/

Public Class Methods

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