From 5383a672e66fd1aacb54175750173d02d4090c4c Mon Sep 17 00:00:00 2001
From: Paul DobbinSchmaltz
Date: Sat, 25 Nov 2023 22:20:41 -0600
Subject: [PATCH] Gemwork update: Use IRB + debug instead of Pry
---
Gemfile.lock | 11 +++--------
bin/console | 8 ++++----
say.gemspec | 2 --
3 files changed, 7 insertions(+), 14 deletions(-)
diff --git a/Gemfile.lock b/Gemfile.lock
index c1a9a78..bf1237c 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -10,12 +10,13 @@ GEM
ansi (1.5.0)
ast (2.4.2)
builder (3.2.4)
- coderay (1.1.3)
debug (1.8.0)
irb (>= 1.5.0)
reline (>= 0.3.1)
docile (1.4.0)
- gemwork (0.2.0)
+ gemwork (0.3.0)
+ debug
+ irb
minitest
minitest-reporters
much-stub
@@ -33,7 +34,6 @@ GEM
json (2.6.3)
kwalify (0.7.2)
language_server-protocol (3.17.0.3)
- method_source (1.0.0)
minitest (5.20.0)
minitest-reporters (1.6.1)
ansi
@@ -45,9 +45,6 @@ GEM
parser (3.2.2.4)
ast (~> 2.4.1)
racc
- pry (0.14.2)
- coderay (~> 1.1)
- method_source (~> 1.0)
psych (5.1.1.1)
stringio
racc (1.7.3)
@@ -102,9 +99,7 @@ PLATFORMS
DEPENDENCIES
amazing_print
- debug
gemwork
- pry
rake
say!
timecop
diff --git a/bin/console b/bin/console
index 7f392d9..8cc0a33 100755
--- a/bin/console
+++ b/bin/console
@@ -7,9 +7,9 @@ require "say"
# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
-# require "irb"
-# IRB.start(__FILE__)
+require "irb"
+IRB.start(__FILE__)
# (If you use this, don't forget to add pry to your Gemfile!)
-require "pry"
-Pry.start
+# require "pry"
+# Pry.start
diff --git a/say.gemspec b/say.gemspec
index a793b97..a456257 100644
--- a/say.gemspec
+++ b/say.gemspec
@@ -37,9 +37,7 @@ Gem::Specification.new do |spec|
# guide at: https://bundler.io/guides/creating_gem.html
spec.add_development_dependency "amazing_print"
- spec.add_development_dependency "debug"
spec.add_development_dependency "gemwork"
- spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "timecop"
end