Last active
November 6, 2019 10:33
-
-
Save aleonjob/201a2b22133edf20479dc7f833a59deb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is the correlative of Gemfile and it's aim is to include gems that are note meant to be part of the project | |
# but only for development purposes and you don't want to include them in the project as dependencies. | |
# That's why Gemfile_dev and Gemfile_dev.lock must be git-ignored or git-excluded | |
# To use the gems specified in this file: | |
# 1. Create a "Gemfile_dev" file (at same level of "Gemfile") | |
# 2. Prepend "BUNDLE_GEMFILE=Gemfile_dev" before "bundle install" or "bundle exec rails c" and so forth. | |
# | |
eval_gemfile "./Gemfile" | |
group :development, :test do | |
gem "awesome_print", require:"ap" | |
gem "binding_of_caller" | |
gem "hirb" | |
gem "meta_request" | |
gem "pry-byebug" | |
gem "pry-rails" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment