In Files

Included Modules

Class/Module Index [+]

Quicksearch

Twitter

Constants

Status

Public Class Methods

client() click to toggle source

Delegate to a Twitter::Client

@return [Twitter::Client]

# File lib/twitter.rb, line 11
def client
  if @client && @client.cache_key == options.hash
    @client
  else
    @client = Twitter::Client.new(options)
  end
end
respond_to?(method_name, include_private=false) click to toggle source
# File lib/twitter.rb, line 20
def respond_to?(method_name, include_private=false); client.respond_to?(method_name, include_private) || super; end
respond_to_missing?(method_name, include_private=false) click to toggle source
# File lib/twitter.rb, line 19
def respond_to_missing?(method_name, include_private=false); client.respond_to?(method_name, include_private); end

[Validate]

Generated with the Darkfish Rdoc Generator 2.