m. libby's above average software site

tweets

blog

Quick Gemfile to upgrade from Rails 3.2 to 4.0 beta

I couldn't find this all in one place. Trying to update from a 3.2 Rails app to 4.0 beta/edge using only Gemfile changes and applying them with bundle install turns out to be very possible and pretty dang easy. Here's my new Gemfile:

source 'https://rubygems.org'

gem "rails", :git => "git://github.com/rails/rails.git"
gem "activerecord-deprecated_finders", :git=>"https://github.com/rails/activerecord-deprecated_finders.git"
gem "journey", :git=>"https://github.com/rails/journey.git"

gem 'sqlite3'

group :assets do
  gem 'sass-rails', git: "https://github.com/rails/sass-rails.git"
  gem 'coffee-rails', git: "https://github.com/rails/coffee-rails.git"
  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'
gem 'capistrano'

about

This is the internet home page of Michael C. Libby.

Here's a bunch of stuff I've done over the years...