bin/bumbler in bumbler-0.8.0 vs bin/bumbler in bumbler-0.9.0
- old
+ new
@@ -19,10 +19,12 @@
Usage:
bumbler
Options:
BANNER
- parser.on("-t", "--threshold MILLISECONDS", Integer, "Threshold in ms to be listed as slow") { |t| options[:threshold] = t }
+ parser.on("-t", "--threshold MILLISECONDS", Integer, "Threshold in ms to be listed as slow") do |t|
+ options[:threshold] = t
+ end
parser.on("--initializers", "Show load time of initializers") { options[:initializers] = true }
parser.on("--all", "Show all load times") { options[:all] = true }
parser.on("-h", "--help", "Show this.") { puts parser; exit }
parser.on('-v', '--version', 'Show Version') { puts Bumbler::VERSION; exit }
end.parse!