Class: Pot::Config
Instance Attribute Summary collapse
-
#cloud ⇒ Object
Returns the value of attribute cloud.
-
#debug ⇒ Object
Returns the value of attribute debug.
-
#force ⇒ Object
Returns the value of attribute force.
-
#testing ⇒ Object
Returns the value of attribute testing.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
- #debug? ⇒ Boolean
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #testing? ⇒ Boolean
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
13 14 15 16 17 18 |
# File 'lib/pot/config.rb', line 13 def initialize @testing = false @verbose = false @force = false @debug = false end |
Instance Attribute Details
#cloud ⇒ Object
Returns the value of attribute cloud.
7 8 9 |
# File 'lib/pot/config.rb', line 7 def cloud @cloud end |
#debug ⇒ Object
Returns the value of attribute debug.
7 8 9 |
# File 'lib/pot/config.rb', line 7 def debug @debug end |
#force ⇒ Object
Returns the value of attribute force.
7 8 9 |
# File 'lib/pot/config.rb', line 7 def force @force end |
#testing ⇒ Object
Returns the value of attribute testing.
7 8 9 |
# File 'lib/pot/config.rb', line 7 def testing @testing end |
#verbose ⇒ Object
Returns the value of attribute verbose.
7 8 9 |
# File 'lib/pot/config.rb', line 7 def verbose @verbose end |
Instance Method Details
#debug? ⇒ Boolean
24 25 26 |
# File 'lib/pot/config.rb', line 24 def debug? @debug end |
#testing? ⇒ Boolean
20 21 22 |
# File 'lib/pot/config.rb', line 20 def testing? @testing end |