Add debug + irb gems to assist with debugging in development and tests (#27960)
This commit is contained in:
parent
67fd3187b3
commit
c9ffdcbaa2
2 changed files with 11 additions and 0 deletions
6
Gemfile
6
Gemfile
|
@ -9,6 +9,9 @@ gem 'sprockets', '~> 3.7.2'
|
|||
gem 'thor', '~> 1.2'
|
||||
gem 'rack', '~> 2.2.7'
|
||||
|
||||
# For why irb is in the Gemfile, see: https://ruby.social/@st0012/111444685161478182
|
||||
gem 'irb', '~> 1.8'
|
||||
|
||||
gem 'haml-rails', '~>2.0'
|
||||
gem 'pg', '~> 1.5'
|
||||
gem 'pghero'
|
||||
|
@ -179,6 +182,9 @@ group :development do
|
|||
end
|
||||
|
||||
group :development, :test do
|
||||
# Interactive Debugging tools
|
||||
gem 'debug', '~> 1.8'
|
||||
|
||||
# Profiling tools
|
||||
gem 'memory_profiler', require: false
|
||||
gem 'ruby-prof', require: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue