From 7e6f3831d102882794d4e9fe7952eff832d4d37f Mon Sep 17 00:00:00 2001 From: Michael Kohl Date: Thu, 26 Aug 2021 20:06:42 +0700 Subject: [PATCH] Make pry available in tests (#14595) --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index a5a73b1aa..c53ca673a 100644 --- a/Gemfile +++ b/Gemfile @@ -128,8 +128,6 @@ group :development do gem "guard-livereload", "~> 2.5", require: false # Guard::LiveReload automatically reloads your browser when 'view' files are modified gem "listen", "~> 3.7", require: false # Helps 'listen' to file system modifications events (also used by other gems like guard) gem "memory_profiler", "~> 1.0", require: false # Memory profiling routines for Ruby 2.3+ - gem "pry", "~> 0.13" # An IRB alternative and runtime developer console - gem "pry-rails", "~> 0.3" # Use Pry as your rails console gem "web-console", "~> 4.1" # Rails Console on the Browser end @@ -141,6 +139,8 @@ group :development, :test do gem "dotenv-rails", "~> 2.7.6" # For loading ENV variables locally gem "faker", "~> 2.19" # A library for generating fake data such as names, addresses, and phone numbers gem "knapsack_pro", "~> 3.1.0" # Help parallelize Ruby spec builds + gem "pry", "~> 0.13" # An IRB alternative and runtime developer console + gem "pry-rails", "~> 0.3" # Use Pry as your rails console gem "rspec-rails", "~> 5.0" # rspec-rails is a testing framework for Rails 3+ gem "rubocop", "~> 1.19", require: false # Automatic Ruby code style checking tool gem "rubocop-performance", "~> 1.11", require: false # A collection of RuboCop cops to check for performance optimizations in Ruby code