Skip to content

Commit 8f2cbe3

Browse files
Copilotsimonneutert
andcommitted
Replace Pry with IRB for debugging
Co-authored-by: simonneutert <8125726+simonneutert@users.noreply.github.com>
1 parent c829d6a commit 8f2cbe3

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ end
1313
group :development do
1414
gem 'htmlbeautifier'
1515
gem 'prism', '~> 1.4'
16-
gem 'pry', '~> 0.14.2'
17-
gem 'pry-debugger-jruby', '~> 2.1'
1816
gem 'rubocop', require: false
1917
gem 'rubocop-minitest', require: false
2018
gem 'rubocop-performance', require: false

Gemfile.lock

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ GEM
33
specs:
44
ast (2.4.3)
55
bigdecimal (3.2.2-java)
6-
coderay (1.1.3)
76
ffi (1.17.2-java)
87
htmlbeautifier (1.4.3)
98
jdbc-h2 (2.0.204)
109
json (2.13.2-java)
1110
language_server-protocol (3.17.0.5)
1211
lint_roller (1.1.0)
1312
logger (1.7.0)
14-
method_source (1.1.0)
1513
minitest (5.25.5)
1614
nio4r (2.7.4-java)
1715
ostruct (0.6.3)
@@ -20,13 +18,6 @@ GEM
2018
ast (~> 2.4.1)
2119
racc
2220
prism (1.4.0)
23-
pry (0.14.2-java)
24-
coderay (~> 1.1)
25-
method_source (~> 1.0)
26-
spoon (~> 0.0)
27-
pry-debugger-jruby (2.2.1-java)
28-
pry (>= 0.13, < 0.16)
29-
ruby-debug-base (>= 0.10.4, < 0.12)
3021
puma (6.4.3-java)
3122
nio4r (~> 2.0)
3223
racc (1.8.1-java)
@@ -68,12 +59,9 @@ GEM
6859
rubocop (~> 1.0)
6960
rubocop-sequel (0.3.8)
7061
rubocop (~> 1.0)
71-
ruby-debug-base (0.11.0-java)
7262
ruby-progressbar (1.13.0)
7363
sequel (5.95.1)
7464
bigdecimal
75-
spoon (0.0.6)
76-
ffi
7765
tilt (2.6.1)
7866
unicode-display_width (3.1.4)
7967
unicode-emoji (~> 4.0, >= 4.0.4)
@@ -95,8 +83,6 @@ DEPENDENCIES
9583
minitest (~> 5.2)
9684
ostruct (~> 0.6.3)
9785
prism (~> 1.4)
98-
pry (~> 0.14.2)
99-
pry-debugger-jruby (~> 2.1)
10086
puma (~> 6.4.2)
10187
rack-test (~> 2.1)
10288
rack-unreloader (~> 2.1)

config.ru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Bundler.require
1010
require 'rack/deflater'
1111
require 'roda'
1212
require 'json'
13-
require 'pry' if dev
13+
require 'irb' if dev
1414

1515
require 'logger'
1616
logger = Logger.new($stdout)

0 commit comments

Comments
 (0)