Class: TheRunner::Context::Config

Inherits:
Server::Config show all
Defined in:
lib/the_runner/context/config.rb

Overview

TODO Not quite sure about that inheritance

Instance Attribute Summary collapse

Attributes inherited from Server::Config

#runner_options

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



7
8
9
10
11
# File 'lib/the_runner/context/config.rb', line 7

def initialize
  super
  @parallel = false
  @runner = TheRunner::Runner::SSH
end

Instance Attribute Details

#parallelObject

Returns the value of attribute parallel.



5
6
7
# File 'lib/the_runner/context/config.rb', line 5

def parallel
  @parallel
end

#runnerObject

Returns the value of attribute runner.



6
7
8
# File 'lib/the_runner/context/config.rb', line 6

def runner
  @runner
end

Instance Method Details

#parallel?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/the_runner/context/config.rb', line 16

def parallel?
  @parallel
end