This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#app/controllers/application_controller.rb | |
class ApplicationController < ActionController::Base | |
before_filter :scheduler_redirect if ENV['SCHEDULER_REDIRECT'] | |
# ... | |
private | |
def scheduler_redirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Capybara::RackTest::Browser | |
def build_rack_mock_session | |
Rack::MockSession.new(app, URI.parse(current_host).host) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: &test | |
<<: *defaults | |
database: app_test<%=ENV["TEST_ENV_NUMBER"]%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Git completion | |
git_completion=/usr/local/etc/bash_completion.d/git-completion.bash | |
if [ -f $git_completion ] ; then source $git_completion; fi |