diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2015-04-24 01:24:50 -0400 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2015-04-24 01:24:50 -0400 |
commit | 78b51a80715f47ffdc9a2eec4d998a1db4ce723e (patch) | |
tree | 7af6d2c60a1de18a92841e8383818b39fd340ba2 /Gemfile | |
parent | 805bfc9886c871262b8e5d6b0141b059765b950d (diff) | |
download | rails-78b51a80715f47ffdc9a2eec4d998a1db4ce723e.tar.gz rails-78b51a80715f47ffdc9a2eec4d998a1db4ce723e.tar.bz2 rails-78b51a80715f47ffdc9a2eec4d998a1db4ce723e.zip |
Uncomment byebug in framework Gemfile
History:
1. `debugger` was there until d2ed433b where it was commented out, and I
couldn't figure out why
2. Since then we inherited that when switching to `byebug` in 93559da4
Reasons:
1. It's nice to have a debugger when working on framework bugs
2. It's an uncommented dependency in app Gemfiles since Rails 4.2 (see fbe38c9e)
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ group :test do platforms :mri do gem 'stackprof' - # gem 'byebug' + gem 'byebug' end gem 'benchmark-ips' |