Class: Minke::Config::TaskRunSettings

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/config/config.rb

Overview

TaskRunSettings encapsulates the configuration for the various pre and post sections for each task. You can use this section to load config into consul, wait for a health check to complete, copy files or execute other tasks defined in your Rakefile.

Instance Attribute Summary collapse

Instance Attribute Details

#copyObject

copy is an array of Copy instances which will be copied before the task continues. instance of Minke::Config::Copy

Optional


274
275
276
# File 'lib/minke/config/config.rb', line 274

def copy
  @copy
end

#tasksObject

tasks is an array of strings which point to a defined task in your Rakefile.

Optional


267
268
269
# File 'lib/minke/config/config.rb', line 267

def tasks
  @tasks
end