Class: RspecDispatch::Configuration
- Inherits:
-
Object
- Object
- RspecDispatch::Configuration
- Defined in:
- lib/rspec_dispatch/configuration.rb
Instance Attribute Summary collapse
-
#custom_data ⇒ Object
Returns the value of attribute custom_data.
-
#service_url ⇒ Object
Returns the value of attribute service_url.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
6 7 8 9 10 |
# File 'lib/rspec_dispatch/configuration.rb', line 6 def initialize @service_url = 'http://localhost:3000/' @custom_data = {} @verbose = true end |
Instance Attribute Details
#custom_data ⇒ Object
Returns the value of attribute custom_data.
4 5 6 |
# File 'lib/rspec_dispatch/configuration.rb', line 4 def custom_data @custom_data end |
#service_url ⇒ Object
Returns the value of attribute service_url.
4 5 6 |
# File 'lib/rspec_dispatch/configuration.rb', line 4 def service_url @service_url end |
#verbose ⇒ Object
Returns the value of attribute verbose.
4 5 6 |
# File 'lib/rspec_dispatch/configuration.rb', line 4 def verbose @verbose end |