From d18f6116e8ef2ff0d61fcd93b3066d6306ade826 Mon Sep 17 00:00:00 2001
From: "Peter M. Goldstein" <peter.m.goldstein@gmail.com>
Date: Wed, 25 Jun 2014 01:31:58 -0700
Subject: [PATCH] Switch to byebug for MRI 2.x debugging.  Debugger is not
 supported for 2.1.2 and up, and was never fully 2.x compatible.

---
 Gemfile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Gemfile b/Gemfile
index 4a38c552..20a0b7e6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,9 +8,8 @@ group :development, :test do
   gem 'rubyzip'
   gem 'rails'
 
-  platforms :mri do
-    gem 'debugger'
-  end
+  gem 'debugger', :platforms => [:mri_19]
+  gem 'byebug', :platforms => [:mri_20, :mri_21]
 
   platforms :jruby do
     gem 'jruby-openssl'
-- 
GitLab