module Tweetsentiments

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source
# File lib/tweetsentiments.rb, line 8
def self.client(options={})
  Tweetsentiments::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/tweetsentiments.rb, line 11
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end