Class: Rubu::Order

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

Overview

Configuration space for Rubu.

Options:

  • serial - Force parallel executions to serial.

  • parmax - Limit the number of parallel executions.

  • verbose - Show command executions.

  • force - Force Step updates.

Constant Summary

@@order =
{}

Class Method Summary (collapse)

Class Method Details

+ (Object) [](key)

Get Order entry value.



408
409
410
# File 'lib/rubu.rb', line 408

def Order.[]( key )
    @@order[ key ]
end

+ (Object) []=(key, val)

Set Order entry value.



403
404
405
# File 'lib/rubu.rb', line 403

def Order.[]=( key, val )
    @@order[ key ] = val
end