Module: Twitter::Configurable
Instance Attribute Summary collapse
-
#connection_options ⇒ Object
Returns the value of attribute connection_options.
-
#consumer_key ⇒ Object
writeonly
Sets the attribute consumer_key.
-
#consumer_secret ⇒ Object
writeonly
Sets the attribute consumer_secret.
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#identity_map ⇒ Object
Returns the value of attribute identity_map.
-
#middleware ⇒ Object
Returns the value of attribute middleware.
-
#oauth_token ⇒ Object
writeonly
Sets the attribute oauth_token.
-
#oauth_token_secret ⇒ Object
writeonly
Sets the attribute oauth_token_secret.
Class Method Summary collapse
Instance Method Summary collapse
- #cache_key ⇒ Fixnum
-
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block.
- #credentials? ⇒ Boolean
- #reset! ⇒ Object (also: #setup)
Instance Attribute Details
#connection_options ⇒ Object
Returns the value of attribute connection_options.
6 7 8 |
# File 'lib/twitter/configurable.rb', line 6 def @connection_options end |
#consumer_key=(value) ⇒ Object (writeonly)
Sets the attribute consumer_key
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
5 6 7 |
# File 'lib/twitter/configurable.rb', line 5 def consumer_secret=(value) @consumer_secret = value end |
#endpoint ⇒ Object
Returns the value of attribute endpoint.
6 7 8 |
# File 'lib/twitter/configurable.rb', line 6 def endpoint @endpoint end |
#identity_map ⇒ Object
Returns the value of attribute identity_map.
6 7 8 |
# File 'lib/twitter/configurable.rb', line 6 def identity_map @identity_map end |
#middleware ⇒ Object
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
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
5 6 7 |
# File 'lib/twitter/configurable.rb', line 5 def oauth_token_secret=(value) @oauth_token_secret = value end |
Class Method Details
.keys ⇒ Object
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_key ⇒ Fixnum
37 38 39 |
# File 'lib/twitter/configurable.rb', line 37 def cache_key .hash end |
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block
26 27 28 29 |
# File 'lib/twitter/configurable.rb', line 26 def configure yield self self end |
#credentials? ⇒ 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.[key]) end self end |