Module: Twitter::Configurable

Included in:
Twitter, Client
Defined in:
lib/twitter/configurable.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#connection_optionsObject

Returns the value of attribute connection_options.



6
7
8
# File 'lib/twitter/configurable.rb', line 6

def connection_options
  @connection_options
end

#consumer_key=(value) ⇒ Object (writeonly)

Sets the attribute consumer_key

Parameters:

  • value

    the value to set the attribute consumer_key to.



5
6
7
# File 'lib/twitter/configurable.rb', line 5

def consumer_key=(value)
  @consumer_key = value
end

#consumer_secret=(value) ⇒ Object (writeonly)

Sets the attribute consumer_secret

Parameters:

  • value

    the value to set the attribute consumer_secret to.



5
6
7
# File 'lib/twitter/configurable.rb', line 5

def consumer_secret=(value)
  @consumer_secret = value
end

#endpointObject

Returns the value of attribute endpoint.



6
7
8
# File 'lib/twitter/configurable.rb', line 6

def endpoint
  @endpoint
end

#identity_mapObject

Returns the value of attribute identity_map.



6
7
8
# File 'lib/twitter/configurable.rb', line 6

def identity_map
  @identity_map
end

#middlewareObject

Returns the value of attribute middleware.



6
7
8
# File 'lib/twitter/configurable.rb', line 6

def middleware
  @middleware
end

#oauth_token=(value) ⇒ Object (writeonly)

Sets the attribute oauth_token

Parameters:

  • value

    the value to set the attribute oauth_token to.



5
6
7
# File 'lib/twitter/configurable.rb', line 5

def oauth_token=(value)
  @oauth_token = value
end

#oauth_token_secret=(value) ⇒ Object (writeonly)

Sets the attribute oauth_token_secret

Parameters:

  • value

    the value to set the attribute oauth_token_secret to.



5
6
7
# File 'lib/twitter/configurable.rb', line 5

def oauth_token_secret=(value)
  @oauth_token_secret = value
end

Class Method Details

.keysObject



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/twitter/configurable.rb', line 10

def keys
  @keys ||= [
    :consumer_key,
    :consumer_secret,
    :oauth_token,
    :oauth_token_secret,
    :endpoint,
    :connection_options,
    :identity_map,
    :middleware,
  ]
end

Instance Method Details

#cache_keyFixnum

Returns:

  • (Fixnum)


37
38
39
# File 'lib/twitter/configurable.rb', line 37

def cache_key
  options.hash
end

#configure {|_self| ... } ⇒ Object

Convenience method to allow configuration options to be set in a block

Yields:

  • (_self)

Yield Parameters:



26
27
28
29
# File 'lib/twitter/configurable.rb', line 26

def configure
  yield self
  self
end

#credentials?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/twitter/configurable.rb', line 32

def credentials?
  credentials.values.all?
end

#reset!Object Also known as: setup



41
42
43
44
45
46
# File 'lib/twitter/configurable.rb', line 41

def reset!
  Twitter::Configurable.keys.each do |key|
    instance_variable_set(:"@#{key}", Twitter::Default.options[key])
  end
  self
end