class Tweetsentiments::API

Public Class Methods

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