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 41
def client
  @client = Twitter::Client.new(options) unless defined?(@client) && @client.hash == options.hash
  @client
end
client?() click to toggle source

Has a client been initialized on the Twitter module

@return [Boolean]

# File lib/twitter.rb, line 49
def client?
  !!@client
end
respond_to?(method_name, include_private=false) click to toggle source
# File lib/twitter.rb, line 54
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 53
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.