lib/brakeman/options.rb in brakeman-2.1.1 vs lib/brakeman/options.rb in brakeman-2.1.2
- old
+ new
@@ -175,9 +175,13 @@
opts.on "--message-limit LENGTH", "Limit message length in HTML report" do |limit|
options[:message_limit] = limit.to_i
end
+ opts.on "--table-width WIDTH", "Limit table width in text report" do |width|
+ options[:table_width] = width.to_i
+ end
+
opts.on "-o", "--output FILE", "Specify files for output. Defaults to stdout. Multiple '-o's allowed" do |file|
options[:output_files] ||= []
options[:output_files].push(file)
end