Method: Blower::Context#initialize

Defined in:
lib/blower/context.rb

#initialize(path) ⇒ Context

Create a new Context.

Parameters:

  • path (Array)

    The search path for tasks.



48
49
50
51
52
53
# File 'lib/blower/context.rb', line 48

def initialize (path)
  @path = path
  @data = {}
  @hosts = []
  @failures = []
end