Skip to content

Instantly share code, notes, and snippets.

@tdm00
Last active December 15, 2015 01:58
Show Gist options
  • Save tdm00/5183295 to your computer and use it in GitHub Desktop.
Save tdm00/5183295 to your computer and use it in GitHub Desktop.
Group of gems that I use in development for Ruby on Rails. Paste this into your Gemfile and then run `bundle install`AAfter the gems are installed, you need to also run `rails generate rails_footnotes:install`
group :development do
gem 'brakeman'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'rack-mini-profiler'
gem 'rails-footnotes'
# run `rails generate rails_footnotes:install`
end
group :test do
gem 'shoulda'
gem 'mocha'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment