Class: Dev::Docker::Config
- Defined in:
- lib/firespring_dev_commands/docker.rb
Overview
Config object for setting top level docker config options
Instance Attribute Summary collapse
-
#max_version ⇒ Object
Returns the value of attribute max_version.
-
#min_version ⇒ Object
Returns the value of attribute min_version.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
16 17 18 19 |
# File 'lib/firespring_dev_commands/docker.rb', line 16 def initialize self.min_version = nil self.max_version = nil end |
Instance Attribute Details
#max_version ⇒ Object
Returns the value of attribute max_version
15 16 17 |
# File 'lib/firespring_dev_commands/docker.rb', line 15 def max_version @max_version end |
#min_version ⇒ Object
Returns the value of attribute min_version
15 16 17 |
# File 'lib/firespring_dev_commands/docker.rb', line 15 def min_version @min_version end |