lib/rconf/progress_reporter.rb in rconf-1.0.0 vs lib/rconf/progress_reporter.rb in rconf-1.0.1
- old
+ new
@@ -30,11 +30,13 @@
# Print progress reports to stdout, default behavior
#
# === Return
# true:: Always return true
def self.report_to_stdout
+ reporter = StdoutReporter.new
+ reporter.report("rconf v#{RightConf::VERSION} (c)2011-2013 RightScale")
@@reporters ||= []
- @@reporters << StdoutReporter.new
+ @@reporters << reporter
true
end
# Save progress reports to given file
#