Method: Pipeline.default_options

Defined in:
lib/pipeline.rb

.default_optionsObject

Default set of options



99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/pipeline.rb', line 99

def self.default_options
  {
    :parallel_tasks => true,
    :skip_tasks => Set.new(),
    :exit_on_warn => true,
    :output_format => :text,
    :working_dir => "~/line/tmp/",
    :zap_host => "http://localhost",
    :zap_port => "9999",
    :labels => Set.new() << "filesystem" << "code"     # Defaults to run.
  }
end