Skip to content

Instantly share code, notes, and snippets.

@JohnPlummer
Created January 18, 2011 13:56
Show Gist options
  • Save JohnPlummer/784459 to your computer and use it in GitHub Desktop.
Save JohnPlummer/784459 to your computer and use it in GitHub Desktop.
Rails Setup
require "autotest/growl"
require "autotest/fsevent"
Autotest.add_hook :initialize do |autotest|
%w{.git .svn .hg .DS_Store ._* vendor tmp log doc}.each do |exception|
autotest.add_exception(exception)
end
end
.bundle
db/*.sqlite3
log/*.log
tmp/**/*
tmp/*
doc/api
doc/app
*.swp
*~
.DS_Store
*.log
.idea/*
config/heroku_env.rb
rvm --create --rvmrc 1.9.2@app_name
source 'http://rubygems.org'
gem 'rails'
gem 'sqlite3'
gem 'haml'
gem 'sass'
gem 'compass'
gem 'jquery-rails'
group :development, :test do
gem 'ruby-debug19'
gem 'ruby-debug-ide'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'shoulda'
gem 'capybara'
gem 'launchy'
gem 'spork'
gem 'factory_girl_rails'
gem 'annotate-models'
gem 'haml-rails'
gem 'rake', '~> 0.8.7' #Until the Rake 0.9 Rails Bug is fixed
gem 'wirble'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment