class LSL::Command::Compound
Attributes
output_filename[RW]
Public Instance Methods
each_command() { |c,args| ... }
click to toggle source
# File lib/lsl/command/compound.rb, line 7 def each_command args = [] commands.each do |c| args = yield(c,args) end args end