Class: Eye::Patch::ProcessSet

Inherits:
Hash
  • Object
show all
Defined in:
lib/eye/patch/process_set.rb

Instance Method Summary collapse

Constructor Details

#initialize(group, processes) ⇒ ProcessSet

Returns a new instance of ProcessSet.



5
6
7
8
9
10
11
# File 'lib/eye/patch/process_set.rb', line 5

def initialize(group, processes)
  @group = group

  Array(processes).each do |process|
    parse_process(process)
  end
end