Class: WealthForge::Configuration
- Inherits:
-
Object
- Object
- WealthForge::Configuration
- Defined in:
- lib/wealthforge/configuration.rb
Instance Attribute Summary collapse
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#wf_crt ⇒ Object
Returns the value of attribute wf_crt.
-
#wf_crt_file ⇒ Object
Returns the value of attribute wf_crt_file.
-
#wf_key ⇒ Object
Returns the value of attribute wf_key.
-
#wf_key_file ⇒ Object
Returns the value of attribute wf_key_file.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
12 13 14 15 16 17 18 |
# File 'lib/wealthforge/configuration.rb', line 12 def initialize @wf_crt = nil @wf_key = nil @wf_crt_file = nil @wf_crt_key = nil @environment = "production" end |
Instance Attribute Details
#environment ⇒ Object
Returns the value of attribute environment.
9 10 11 |
# File 'lib/wealthforge/configuration.rb', line 9 def environment @environment end |
#wf_crt ⇒ Object
Returns the value of attribute wf_crt.
5 6 7 |
# File 'lib/wealthforge/configuration.rb', line 5 def wf_crt @wf_crt end |
#wf_crt_file ⇒ Object
Returns the value of attribute wf_crt_file.
7 8 9 |
# File 'lib/wealthforge/configuration.rb', line 7 def wf_crt_file @wf_crt_file end |
#wf_key ⇒ Object
Returns the value of attribute wf_key.
6 7 8 |
# File 'lib/wealthforge/configuration.rb', line 6 def wf_key @wf_key end |
#wf_key_file ⇒ Object
Returns the value of attribute wf_key_file.
8 9 10 |
# File 'lib/wealthforge/configuration.rb', line 8 def wf_key_file @wf_key_file end |