Make pry available in tests (#14595)
This commit is contained in:
parent
edef262537
commit
7e6f3831d1
1 changed files with 2 additions and 2 deletions
4
Gemfile
4
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue