Rails 3, Cucumber, Machinist, Authlogic Gotchas

bundle install
rails g rspec:install
rails g machinist:install

1. Specify rspec versions in Gemfile If you get “no such file to load – action_controller/test_process” error:

gem 'rspec', ">=2.0.0.beta.5", :group => :test

group :test do
  gem 'rspec-rails',">=2.0.0.beta.5"
end

2. Bundle Authlogic from git If you get “undefined method `before_persisting’ for Authlogic” error:

gem 'authlogic', :git => 'http://github.com/binarylogic/authlogic.git'

Emacs tips

Feature mode: http://github.com/michaelklishin/cucumber.el

Org mode: http://orgmode.org/guide/Tables.html#Tables