Skip to content

Instantly share code, notes, and snippets.

@aslamnd
Last active August 29, 2015 13:56
Show Gist options
  • Save aslamnd/9004292 to your computer and use it in GitHub Desktop.
Save aslamnd/9004292 to your computer and use it in GitHub Desktop.
My Default Rails Gemfile
gem 'haml-rails'
group :test, :development do
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'factory_girl_rails'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard'
gem 'guard-rspec'
gem 'guard-livereload', require: false
gem 'launchy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment