Class: Nonnative::ConfigurationRunner

Inherits:
Object
  • Object
show all
Defined in:
lib/nonnative/configuration_runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfigurationRunner

Returns a new instance of ConfigurationRunner.



8
9
10
11
12
13
14
# File 'lib/nonnative/configuration_runner.rb', line 8

def initialize
  self.host = '0.0.0.0'
  self.port = 0
  self.wait = 0.1

  @proxy = Nonnative::ConfigurationProxy.new
end

Instance Attribute Details

#hostObject

Returns the value of attribute host.



5
6
7
# File 'lib/nonnative/configuration_runner.rb', line 5

def host
  @host
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/nonnative/configuration_runner.rb', line 5

def name
  @name
end

#portObject

Returns the value of attribute port.



5
6
7
# File 'lib/nonnative/configuration_runner.rb', line 5

def port
  @port
end

#proxyObject

Returns the value of attribute proxy.



6
7
8
# File 'lib/nonnative/configuration_runner.rb', line 6

def proxy
  @proxy
end

#waitObject

Returns the value of attribute wait.



5
6
7
# File 'lib/nonnative/configuration_runner.rb', line 5

def wait
  @wait
end