Class: ResponseMate::Configuration
- Inherits:
-
Object
- Object
- ResponseMate::Configuration
- Defined in:
- lib/response_mate/core.rb
Overview
Responsible for keeping initialization configuration values
Instance Attribute Summary collapse
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#output_dir ⇒ Object
Returns the value of attribute output_dir.
-
#requests_manifest ⇒ Object
Returns the value of attribute requests_manifest.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
14 15 16 17 18 |
# File 'lib/response_mate/core.rb', line 14 def initialize @output_dir = './' @requests_manifest = './requests.yml' @environment = './environment.yml' end |
Instance Attribute Details
#environment ⇒ Object
Returns the value of attribute environment.
12 13 14 |
# File 'lib/response_mate/core.rb', line 12 def environment @environment end |
#output_dir ⇒ Object
Returns the value of attribute output_dir.
12 13 14 |
# File 'lib/response_mate/core.rb', line 12 def output_dir @output_dir end |
#requests_manifest ⇒ Object
Returns the value of attribute requests_manifest.
12 13 14 |
# File 'lib/response_mate/core.rb', line 12 def requests_manifest @requests_manifest end |