Skip to content

Instantly share code, notes, and snippets.

@vocino
Created November 19, 2013 23:31
Show Gist options
  • Save vocino/7554492 to your computer and use it in GitHub Desktop.
Save vocino/7554492 to your computer and use it in GitHub Desktop.
My go-to organized Gemfile
source 'https://rubygems.org'
gem 'rails', '~> 4.0.1'
gem 'mysql2'
group :development, :test do
# gem 'zeus'
# gem 'rspec-rails'
# gem 'factory_girl_rails'
end
group :test do
# gem 'cucumber-rails', :require => false, git: 'https://github.com/cucumber/cucumber-rails.git'
# gem 'email_spec'
# gem 'database_cleaner'
end
gem 'haml-rails'
gem 'sass-rails', '~> 4.0.0'
gem 'neat'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'uglifier', '>= 1.3.0'
gem 'jbuilder', '~> 1.2'
gem 'turbolinks'
group :doc do
gem 'sdoc', require: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment