lib/quarry/reporter/dotprogress.rb in quarry-0.5.0 vs lib/quarry/reporter/dotprogress.rb in quarry-0.5.2
- old
+ new
@@ -5,24 +5,26 @@
class Reporter #:nodoc:
#
class DotProgress < Reporter
+ #
def report_intro
@start_time = Time.now
puts "Started"
end
+ #
def report_step(step)
super
- if step.code
+ #if step.code
print "."
#str = "(%s) %s" % [count.join('.'), str.tab(6).strip]
#puts "* #{step.text.tab(2).strip}"
#puts "\n#{step.code}\n" if $VERBOSE
- else
+ #else
#puts "\n#{step.text}"
- end
+ #end
end
#def report(str)
# count[-1] += 1 unless count.empty?
# str = str.chomp('.') + '.'