Module: Fantasydata::Configurable
- Extended by:
- Forwardable
- Included in:
- Fantasydata, Client
- Defined in:
- lib/fantasydata/configurable.rb
Instance Attribute Summary collapse
-
#api_key ⇒ Object
writeonly
Sets the attribute api_key.
-
#connection_options ⇒ Object
Returns the value of attribute connection_options.
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#middleware ⇒ Object
Returns the value of attribute middleware.
Class Method Summary collapse
Instance Method Summary collapse
-
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block.
- #credentials? ⇒ Boolean
- #reset! ⇒ Object (also: #setup)
Instance Attribute Details
#api_key=(value) ⇒ Object (writeonly)
Sets the attribute api_key
8 9 10 |
# File 'lib/fantasydata/configurable.rb', line 8 def api_key=(value) @api_key = value end |
#connection_options ⇒ Object
Returns the value of attribute connection_options.
9 10 11 |
# File 'lib/fantasydata/configurable.rb', line 9 def end |
#endpoint ⇒ Object
Returns the value of attribute endpoint.
9 10 11 |
# File 'lib/fantasydata/configurable.rb', line 9 def endpoint @endpoint end |
#middleware ⇒ Object
Returns the value of attribute middleware.
9 10 11 |
# File 'lib/fantasydata/configurable.rb', line 9 def middleware @middleware end |
Class Method Details
.keys ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'lib/fantasydata/configurable.rb', line 13 def keys @keys ||= [ :api_key, :endpoint, :connection_options, :middleware, ] end |
Instance Method Details
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block
27 28 29 30 31 |
# File 'lib/fantasydata/configurable.rb', line 27 def configure yield self validate_credential_type! self end |
#credentials? ⇒ Boolean
34 35 36 |
# File 'lib/fantasydata/configurable.rb', line 34 def credentials? credentials.values.all? end |
#reset! ⇒ Object Also known as: setup
38 39 40 41 42 43 |
# File 'lib/fantasydata/configurable.rb', line 38 def reset! Fantasydata::Configurable.keys.each do |key| instance_variable_set(:"@#{key}", Fantasydata::Default.[key]) end self end |