Added option to generate a full plugin list

This commit is contained in:
Christian Mehlmauer
2012-09-10 22:59:03 +02:00
parent 91cfa5a060
commit f273290887
3 changed files with 33 additions and 4 deletions

View File

@@ -12,6 +12,9 @@ def usage()
puts "- Generate a new 'most popular' plugin list, up to 150 pages ..."
puts "ruby " + script_name + " --generate_plugin_list 150"
puts
puts "- Generate a new full plugin list"
puts "ruby " + script_name + " --generate_full_plugin_list"
puts
puts "See README for further information."
puts
end
@@ -24,5 +27,7 @@ def help()
puts "--update | -u Update to the latest revision."
puts "--generate_plugin_list [number of pages] Generate a new data/plugins.txt file. (supply number of *pages* to parse, default : 150)"
puts "--gpl Alias for --generate_plugin_list"
puts "--generate_full_plugin_list Generate a new full data/plugins.txt file"
puts "--gfpl Alias for --generate_full_plugin_list"
puts
end