Browse Source

gem: ajout de pry-rails

Lou 2 years ago
parent
commit
c7a5d53ab6
2 changed files with 13 additions and 11 deletions
  1. 10
    9
      Gemfile
  2. 3
    2
      Gemfile.lock

+ 10
- 9
Gemfile View File

@@ -31,7 +31,9 @@ gem 'rack-cors'
31 31
 
32 32
 group :development, :test do
33 33
   # Call 'byebug' anywhere in the code to stop execution and get a debugger console
34
-  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
34
+  # gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
35
+  gem 'pry'
36
+  gem 'pry-rails'
35 37
 end
36 38
 
37 39
 group :development do
@@ -45,11 +47,10 @@ end
45 47
 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
46 48
 gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
47 49
 
48
-gem "jwt", "~> 2.2"
49
-gem "bcrypt", "~> 3.1"
50
-gem "table_print", "~> 1.5"
51
-gem "faker", "~> 2.17"
52
-gem "activerecord-reset-pk-sequence", "~> 0.2.1"
53
-gem "jsonapi-serializer", "~> 2.2"
54
-gem "dotenv-rails"
55
-gem "pry"
50
+gem 'jwt', '~> 2.2'
51
+gem 'bcrypt', '~> 3.1'
52
+gem 'table_print', '~> 1.5'
53
+gem 'faker', '~> 2.17'
54
+gem 'activerecord-reset-pk-sequence', '~> 0.2.1'
55
+gem 'jsonapi-serializer', '~> 2.2'
56
+gem 'dotenv-rails'

+ 3
- 2
Gemfile.lock View File

@@ -65,7 +65,6 @@ GEM
65 65
     bootsnap (1.7.3)
66 66
       msgpack (~> 1.0)
67 67
     builder (3.2.4)
68
-    byebug (11.1.3)
69 68
     choice (0.2.0)
70 69
     coderay (1.1.3)
71 70
     concurrent-ruby (1.1.8)
@@ -109,6 +108,8 @@ GEM
109 108
     pry (0.14.1)
110 109
       coderay (~> 1.1)
111 110
       method_source (~> 1.0)
111
+    pry-rails (0.3.9)
112
+      pry (>= 0.10.4)
112 113
     puma (5.2.2)
113 114
       nio4r (~> 2.0)
114 115
     racc (1.5.2)
@@ -180,7 +181,6 @@ DEPENDENCIES
180 181
   activerecord-reset-pk-sequence (~> 0.2.1)
181 182
   bcrypt (~> 3.1)
182 183
   bootsnap (>= 1.4.4)
183
-  byebug
184 184
   dotenv-rails
185 185
   faker (~> 2.17)
186 186
   jsonapi-serializer (~> 2.2)
@@ -188,6 +188,7 @@ DEPENDENCIES
188 188
   listen (~> 3.3)
189 189
   pg
190 190
   pry
191
+  pry-rails
191 192
   puma (~> 5.0)
192 193
   rack-cors
193 194
   rails (~> 6.1.3, >= 6.1.3.1)

Loading…
Cancel
Save