awsome 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/awsome +2 -2
- metadata +1 -1
data/bin/awsome
CHANGED
|
@@ -22,9 +22,9 @@ OptionParser.new do |opts|
|
|
|
22
22
|
end.parse!
|
|
23
23
|
|
|
24
24
|
def perform_task(task, &block)
|
|
25
|
-
puts Terminal::Table.new
|
|
25
|
+
puts Terminal::Table.new { |t| t << ["[#{task}] Started"] }
|
|
26
26
|
retval = yield task
|
|
27
|
-
puts Terminal::Table.new
|
|
27
|
+
puts Terminal::Table.new { |t| t << ["[#{task}] Complete"] }
|
|
28
28
|
retval
|
|
29
29
|
end
|
|
30
30
|
|