script/plugin install http://acts-as-tiny-url.googlecode.com/svn/trunk/acts_as_tiny_url
How do you use it? It's extremely simple. Once installed, open up a controller you want to use it in and put 'include ActsAsTinyURL' right underneath the class declaration.
class ApplicationController < ActionController::Base include ActsAsTinyURL end
Once you've got this in place, you can start doing some quick magic.
tiny_url("http://brendanlim.com") # => http://tinyurl.com/3274fk
Expect updates within the next few days when I get some added time in my schedule.


