Update 'usage' message to reflect Chrome support and increase version number to 0.1.0.

master
Jeff Dallien 2012-02-22 19:45:17 -05:00
parent c8d8879153
commit dbd7ca9299
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,8 @@ require File.expand_path(File.join(File.dirname(__FILE__), "..", "lib", "cookie_
# TODO: Locate cookie dbs automatically
filename = ARGV.first
unless filename
puts "Usage: cookie_extractor /path/to/cookies.sqlite"
puts "Usage: (Firefox) cookie_extractor /path/to/cookies.sqlite"
puts " (Chrome) cookie_extractor /path/to/Cookies"
exit
end

View File

@ -1,3 +1,3 @@
module CookieExtractor
VERSION = "0.0.1"
VERSION = "0.1.0"
end