Class: LSL::Command::Compound
- Includes:
- FromHash
- Defined in:
- lib/lsl/command/compound.rb
Instance Attribute Summary collapse
-
#output_filename ⇒ Object
Returns the value of attribute output_filename.
Instance Method Summary collapse
Instance Attribute Details
#output_filename ⇒ Object
Returns the value of attribute output_filename.
5 6 7 |
# File 'lib/lsl/command/compound.rb', line 5 def output_filename @output_filename end |
Instance Method Details
#each_command ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/lsl/command/compound.rb', line 7 def each_command args = [] commands.each do |c| args = yield(c,args) end args end |