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.



420
421
422
# File 'lib/rubu.rb', line 420

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

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

Set Order entry value.



415
416
417
# File 'lib/rubu.rb', line 415

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