Class: SecondAmendmentWholesale::Configuration
- Inherits:
-
Object
- Object
- SecondAmendmentWholesale::Configuration
- Defined in:
- lib/second_amendment_wholesale.rb
Instance Attribute Summary collapse
-
#proxy_address ⇒ Object
Returns the value of attribute proxy_address.
-
#proxy_port ⇒ Object
Returns the value of attribute proxy_port.
-
#user_agent ⇒ Object
Returns the value of attribute user_agent.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
35 36 37 38 39 |
# File 'lib/second_amendment_wholesale.rb', line 35 def initialize @proxy_address ||= nil @proxy_port ||= nil @user_agent ||= "SecondAmendmentWholesaleRubyGem/#{SecondAmendmentWholesale::VERSION}".freeze end |
Instance Attribute Details
#proxy_address ⇒ Object
Returns the value of attribute proxy_address.
31 32 33 |
# File 'lib/second_amendment_wholesale.rb', line 31 def proxy_address @proxy_address end |
#proxy_port ⇒ Object
Returns the value of attribute proxy_port.
32 33 34 |
# File 'lib/second_amendment_wholesale.rb', line 32 def proxy_port @proxy_port end |
#user_agent ⇒ Object
Returns the value of attribute user_agent.
33 34 35 |
# File 'lib/second_amendment_wholesale.rb', line 33 def user_agent @user_agent end |