Class: Dev::Docker::Config

Inherits:
Struct
  • Object
show all
Defined in:
lib/firespring_dev_commands/docker.rb

Overview

Config object for setting top level docker config options

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

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_versionObject

Returns the value of attribute max_version

Returns:

  • (Object)

    the current value of max_version



15
16
17
# File 'lib/firespring_dev_commands/docker.rb', line 15

def max_version
  @max_version
end

#min_versionObject

Returns the value of attribute min_version

Returns:

  • (Object)

    the current value of min_version



15
16
17
# File 'lib/firespring_dev_commands/docker.rb', line 15

def min_version
  @min_version
end