Blog

Wednesday 16 December 2009 | 3 comments

Stoptoad: Resolve All Hoptoad Errors

Deployed to Heroku for the first time today. Insanely easy! Literally took a matter of seconds. Stoptoad is a utility buit with Sinatra that will mark as resolved all Hoptoad errors. Requires auth token and subdomain name then cycles through all paginated error results until completed. http://gentle-robot-34.... More

Sunday 30 August 2009

Sinatra To Do List Application

Because the world has been screaming out in agonized, pleading desperation for a to do list application, I proudly present to you my Sinatra to do list application, replete with super useless powers. Features: * If you know how to get this up and running, you could have just written your own http://github.com/gordonbisnor/Sinatra-To-Do-List git clone git@github.com:gordonb... More

Tags: SinatraRuby

Wednesday 03 June 2009 | 2 comments

My Recipe For Sinatra/Thin/Rack/Webfaction

The solution I am using for deploying a Sinatra app that runs on Thin and Rack on Webfaction, without Capistrano or Git, just using Rsync and Rake. Create the application: myapp config config.ru config.yml db migrate rake migration files myapp.sqlite3.db myapp.rb lib models public stylesheets images javascripts Rakefile tmp/ views layout.erb myview.erbMore