diff --git a/.gitignore b/.gitignore index c111b33..5fff1d9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -*.gem +pkg diff --git a/Manifest.txt b/Manifest.txt index 600fbea..cac3063 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -3,6 +3,6 @@ History.txt Manifest.txt README.txt Rakefile -bin/safari_cookiejar -lib/safari_cookiejar.rb -test/test_safari_cookiejar.rb +bin/safari-cookiejar +lib/safari-cookiejar.rb +test/test_safari-cookiejar.rb diff --git a/README.txt b/README.txt index 03c332d..e5ee232 100644 --- a/README.txt +++ b/README.txt @@ -1,48 +1,29 @@ -# Safari-Cookiejar - -Calls curl or wget with a cookies.txt generated from Safari's cookie jar. - -## Installation - - $ git clone git://github.com/WIZARDISHUNGRY/safari-cookiejar.git - $ cd safari-cookiejar - $ gem build safari-cookiejar.gemspec - $ sudo gem install safari-cookiejar-_whatever_.gem - -## Invocation - -Safari Plist code taken from http://seriousorange.com/2010/01/converting-safari-cookies-plist-to-cookies-txt/ - - -## Example - -bin/safari-cookiejar.rb wget http://www.google.com/reader/public/subscriptions/user/ - = safari_cookiejar -* FIX (url) +* https://github.com/WIZARDISHUNGRY/safari-cookiejar == DESCRIPTION: -FIX (describe your package) +* Calls curl or wget with a cookies.txt generated from Safari's cookie jar. == FEATURES/PROBLEMS: -* FIX (list of features or problems) +* Developer unfamiliar with Ruby conventions == SYNOPSIS: - FIX (code sample of usage) +* bin/safari-cookiejar.rb wget http://www.google.com/reader/public/subscriptions/user/ == REQUIREMENTS: -* FIX (list of requirements) +* plist == INSTALL: -* FIX (sudo gem install, anything else) - -== DEVELOPERS: + $ git clone git://github.com/WIZARDISHUNGRY/safari-cookiejar.git + $ cd safari-cookiejar + $ sudo rake install_gem + == DEVELOPERS: After checking out the source, run: @@ -55,7 +36,7 @@ and generate the RDoc. (The MIT License) -Copyright (c) 2010 FIX +Copyright (c) 2010 Jonathan Williams Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/Rakefile b/Rakefile index 762b121..a09136e 100644 --- a/Rakefile +++ b/Rakefile @@ -9,14 +9,14 @@ require 'hoe' # Hoe.plugin :racc # Hoe.plugin :rubyforge -Hoe.spec 'safari_cookiejar' do +Hoe.spec 'safari-cookiejar' do # HEY! If you fill these out in ~/.hoe_template/Rakefile.erb then # you'll never have to touch them again! # (delete this comment too, of course) - # developer('FIX', 'FIX@example.com') + developer('Jon Williams', 'jonathan.williams@gmail.com') - # self.rubyforge_name = 'safari_cookiejarx' # if different than 'safari_cookiejar' + # self.rubyforge_name = 'safari-cookiejar' # if different than 'safari-cookiejar' end # vim: syntax=ruby diff --git a/test/test_safari_cookiejar.rb b/test/test_safari_cookiejar.rb deleted file mode 100644 index f24d981..0000000 --- a/test/test_safari_cookiejar.rb +++ /dev/null @@ -1,8 +0,0 @@ -require "test/unit" -require "safari_cookiejar" - -class TestSafariCookiejar < Test::Unit::TestCase - def test_sanity - flunk "write tests or I will kneecap you" - end -end