From 301622c344324f3aa03f659bfc4ed1c5bfa95d6f Mon Sep 17 00:00:00 2001 From: Bilel Kihal <61744974+Bilelkihal@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:25:46 +0200 Subject: [PATCH] move pry gem outside development block in gemfile (#671) --- Gemfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 5ee645181..df6faa380 100644 --- a/Gemfile +++ b/Gemfile @@ -42,10 +42,11 @@ gem 'turbo-rails' # [https://stimulus.hotwired.dev] gem 'stimulus-rails' -# Build JSON APIs with ease [https://github.com/rails/jbuilder] -# gem "jbuilder" +# Debugging tool +# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem gem 'pry' +gem 'pry' -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +# Time zone info for Windows platforms gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] # To use ActiveModel has_secure_password @@ -142,7 +143,6 @@ group :development do gem 'html2haml' # Debugging tools - # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem gem 'debug', platforms: %i[mri mingw x64_mingw] # Use console on exceptions pages [https://github.com/rails/web-console]