module TweetStream

Constants

VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

Delegate to TweetStream::Client

Calls superclass method
# File lib/tweetstream.rb, line 26
def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end
new(options = {}) click to toggle source

Alias for TweetStream::Client.new

@return [TweetStream::Client]

# File lib/tweetstream.rb, line 21
def new(options = {})
  TweetStream::Client.new(options)
end
respond_to?(method, include_private = false) click to toggle source

Delegate to TweetStream::Client

Calls superclass method
# File lib/tweetstream.rb, line 32
def respond_to?(method, include_private = false)
  new.respond_to?(method, include_private) || super(method, include_private)
end