In Rails 2, you used to be able to run an application without a database by adding the following line to your config/environment.rb file:
Rails 3 has switched the convention around. Go into your config/application.rb file and remove the following line:
Replace it with the following lines:
You should now be able to fire up your rails application without a database.