public
Description: A ruby wrapper for the bit.ly API
Homepage: http://github.com/philnash/bitly
Clone URL: git://github.com/philnash/bitly.git
bitly /
name age message
file .gitignore Mon Apr 13 14:17:58 -0700 2009 added manifest [philnash]
file History.txt Sun Nov 15 10:32:51 -0800 2009 called the wrong variable in case of error in t... [philnash]
file Manifest Wed Jul 29 03:44:02 -0700 2009 New Manifest and gemspec for version 0.3.1 [philnash]
file README.txt Thu Jul 09 14:54:07 -0700 2009 Upped version number to 0.3. New gemspec. [philnash]
file Rakefile Mon Apr 20 21:05:23 -0700 2009 commit to force gem build on GitHub [coryosborn]
file bitly.gemspec Sun Nov 15 10:37:33 -0800 2009 New gemspec for 0.3.2 [philnash]
directory lib/ Sun Nov 15 10:32:51 -0800 2009 called the wrong variable in case of error in t... [philnash]
directory test/ Wed Jul 29 03:32:47 -0700 2009 Fresh gemspec for version 0.3.1. Removes commen... [philnash]
README.txt
= bitly

== DESCRIPTION:

A Ruby API for bit.ly

http://code.google.com/p/bitly-api/wiki/ApiDocumentation

== INSTALLATION:

gem install bitly

== USAGE:

Create a Bitly client using your username and api key as follows:

bitly = Bitly.new(username, api_key)

You can then use that client to shorten or expand urls or return more information or statistics as so:

bitly.shorten('http://www.google.com')
bitly.shorten('http://www.google.com', :history => 1) # adds the url to the api user's history
bitly.expand('wQaT')
bitly.info('http://bit.ly/wQaT')
bitly.stats('http://bit.ly/wQaT')

Each can be used in all the methods described in the API docs, the shorten function, for example, takes a url or an 
array of urls.

All four functions return a Bitly::Url object (or an array of Bitly::Url objects if you supplied an array as the input). 
You can then get all the information required from that object.

u = bitly.shorten('http://www.google.com') #=> Bitly::Url

u.long_url #=> "http://www.google.com"
u.short_url #=> "http://bit.ly/Ywd1"
u.user_hash #=> "Ywd1"
u.hash #=> "2V6CFi"
u.info #=> a ruby hash of the JSON returned from the API
u.stats #=> a ruby hash of the JSON returned from the API

bitly.shorten('http://www.google.com', 'keyword')

== LICENSE:

(The MIT License)

Copyright (c) 2009 Phil Nash

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.