From cf394452d376941c716ec497e0be8b3a66a8058b Mon Sep 17 00:00:00 2001 From: "Michael J. Giarlo" Date: Thu, 13 Oct 2016 10:51:24 -0700 Subject: [PATCH] Add pry and pry-byebug as development dependencies --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 30f309f21a..8f91b39fcc 100644 --- a/Gemfile +++ b/Gemfile @@ -5,8 +5,9 @@ gemspec group :development, :test do gem "simplecov", require: false - gem 'byebug' unless ENV['CI'] gem 'coveralls', require: false + gem 'pry' unless ENV['CI'] + gem 'pry-byebug' unless ENV['CI'] end # BEGIN ENGINE_CART BLOCK