Method: PostageApp::Configuration#initialize
- Defined in:
- lib/postageapp/configuration.rb
#initialize ⇒ Configuration
Returns a new instance of Configuration.
56 57 58 59 60 61 62 63 64 |
# File 'lib/postageapp/configuration.rb', line 56 def initialize @secure = true @host = 'api.postageapp.com' @http_open_timeout = 5 @http_read_timeout = 10 @requests_to_resend = %w( send_message ) @framework = 'undefined framework' @environment = 'production' end |