Skip to content

Instantly share code, notes, and snippets.

@leshill
leshill / gist:1477817
Created December 14, 2011 18:23
Bookmark this gist in mobile Safari, edit the bookmark and replace the address with the contents of this gist. Hat tip to http://martinkool.com/post/13629963755/firebug-on-ipad-and-iphone, on my iOS5 phone I see: https://skitch.com/leshill/gtmb6/photo.png
javascript:(function(F,i,r,e,b,u,g,L,I,T,E){if(F.getElementById(b))return;E=F[i+'NS']&&F.documentElement.namespaceURI;E=E?F[i+'NS'](E,'script'):F[i]('script');E[r]('id',b);E[r]('src',I+g+T);E[r](b,u);(F[e]('head')[0]||F[e]('body')[0]).appendChild(E);E=new%20Image;E[r]('src',I+L);})(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4','firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened');
@leshill
leshill / heroku_auto_scaler.rb
Created November 28, 2011 23:21
HerokuAutoScaler -- drop in, require, and go!
# Scale workers on Heroku automatically as your Resque queue grows.
# Mixin the +Scaling+ module into your models to get the behavior.
#
# class MyModel < ActiveRecord::Base
# extend HerokuAutoScaler::AutoScaling
# end
#
# And configure in an initializer +config/initializers/heroku_workers.rb+:
#
# HerokuAutoScaler.configure do
@leshill
leshill / Procfile
Created November 28, 2011 20:01
Unicorn config for cedar stack on Heroku.
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
# Fast specs
#
# To run from the command line for my_model in your app:
#
# rspec -Ifast_specs fast_specs/models/my_model
#
require 'rspec'
RSpec.configure do |config|
config.mock_with :rspec
@leshill
leshill / resource_responder.rb
Created August 10, 2011 18:29
Responding to a JSON PUT with either a 200 and the updated JSON or 204 and no body
# The default Responder returns 200, {} for a PUT success.
# Not really happy with that. A 204, nil would be better.
# However, for most resources the result of a PUT is that something changes (updated_at).
# A 200 with the updated resource makes sense in that case.
#
# Not really happy with this first cut.
#
class ResourceResponder < ActionController::Responder
protected
def update_main_artist
artist = if rovi_artist
Artist.create(:name => rovi_artist.name)
else
artists.first
end
update_attribute :main_artist_id, artist.id
end
@leshill
leshill / application_controller.rb
Created May 16, 2011 17:58
Work in progress...
#app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
before_filter :scheduler_redirect if ENV['SCHEDULER_REDIRECT']
# ...
private
def scheduler_redirect
@leshill
leshill / capybara.rb
Created May 2, 2011 05:41
Capybara example.org/example.com issue #36
class Capybara::RackTest::Browser
def build_rack_mock_session
Rack::MockSession.new(app, URI.parse(current_host).host)
end
end
@leshill
leshill / mongoid.yml
Created April 27, 2011 15:16
Using mongoid with specjour
test: &test
<<: *defaults
database: app_test<%=ENV["TEST_ENV_NUMBER"]%>
@leshill
leshill / .bashrc.local
Created April 14, 2011 21:58
Add this to the bottom of your .bashrc.local
# Git completion
git_completion=/usr/local/etc/bash_completion.d/git-completion.bash
if [ -f $git_completion ] ; then source $git_completion; fi