Module: Scalingo::Configuration
- Included in:
- Scalingo
- Defined in:
- lib/scalingo/configuration.rb
Overview
Defines constants and methods related to configuration
Constant Summary collapse
- VALID_OPTIONS_KEYS =
An array of valid keys in the options hash when configuring a Api
[ :adapter, :token, :endpoint, :user_agent, :proxy, :parse_json, ].freeze
- DEFAULT_ADAPTER =
Note:
The default faraday adapter is Net::HTTP.
The adapter that will be used to connect if none is set
Faraday.default_adapter
- DEFAULT_TOKEN =
By default, don’t set an token
nil- DEFAULT_ENDPOINT =
Note:
There is no reason to use any other endpoint at this time
The endpoint that will be used to connect if none is set
'https://api.scalingo.com/v1/'.freeze
- DEFAULT_PROXY =
By default, don’t use a proxy server
nil- DEFAULT_USER_AGENT =
The user agent that will be sent to the Api endpoint if none is set
"Scalingo Ruby Gem #{Scalingo::VERSION}".freeze
- DEFAULT_PARSE_JSON =
Parse json by default, only changed when getting text result (e.g. Logs)
true
Class Method Summary collapse
-
.extended(base) ⇒ Object
When this module is extended, set all configuration options to their default values.
Instance Method Summary collapse
-
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block.
-
#options ⇒ Object
Create a hash of options and their values.
-
#reset ⇒ Object
Reset all configuration options to defaults.
Class Method Details
.extended(base) ⇒ Object
When this module is extended, set all configuration options to their default values
43 44 45 |
# File 'lib/scalingo/configuration.rb', line 43 def self.extended(base) base.reset end |
Instance Method Details
#configure {|_self| ... } ⇒ Object
Convenience method to allow configuration options to be set in a block
48 49 50 |
# File 'lib/scalingo/configuration.rb', line 48 def configure yield self end |
#options ⇒ Object
Create a hash of options and their values
53 54 55 56 57 |
# File 'lib/scalingo/configuration.rb', line 53 def VALID_OPTIONS_KEYS.inject({}) do |option, key| option.merge!(key => send(key)) end end |
#reset ⇒ Object
Reset all configuration options to defaults
60 61 62 63 64 65 66 67 |
# File 'lib/scalingo/configuration.rb', line 60 def reset self.adapter = DEFAULT_ADAPTER self.token = DEFAULT_TOKEN self.endpoint = DEFAULT_ENDPOINT self.user_agent = DEFAULT_USER_AGENT self.proxy = DEFAULT_PROXY self.parse_json = DEFAULT_PARSE_JSON end |