ratchetcat-commander 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +3 -0
- data/lib/commander.rb +1 -1
- metadata +1 -1
data/README.txt
CHANGED
@@ -17,6 +17,9 @@ Commander uses the open4 gem and the ruby logger to accomplish these tasks.
|
|
17
17
|
Commander was originally intended for use in rake tasks launching multiple system commands. Program flow was varied based on the exit status or source of the output from these commands and Commander includes some convenience methods for handling such situations.
|
18
18
|
|
19
19
|
Setup:
|
20
|
+
|
21
|
+
require 'rubygems'
|
22
|
+
require 'commander'
|
20
23
|
|
21
24
|
log = Logger.new( STDOUT )
|
22
25
|
log.level = Logger::Warn
|
data/lib/commander.rb
CHANGED