From 6147fb0a10a9cb9b2598dcf299b763797ae02dc5 Mon Sep 17 00:00:00 2001 From: Grzegorz Kaczorek Date: Tue, 14 Jan 2025 16:23:06 +0100 Subject: [PATCH] Remove version requirement for pry dependency This change allows the library to be used within projects that don't user this specific version of pry. I don't think it's meaningful in the current form since it's used for the REPL and can actually benefit from updates to the gem, while having a very low probability of breaking, --- nano-bots.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano-bots.gemspec b/nano-bots.gemspec index 78ceb55..8b50dd7 100644 --- a/nano-bots.gemspec +++ b/nano-bots.gemspec @@ -34,7 +34,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'babosa', '~> 2.0' spec.add_dependency 'concurrent-ruby', '~> 1.3', '>= 1.3.3' spec.add_dependency 'dotenv', '~> 3.1', '>= 3.1.2' - spec.add_dependency 'pry', '~> 0.14.2' + spec.add_dependency 'pry' spec.add_dependency 'rainbow', '~> 3.1', '>= 3.1.1' spec.add_dependency 'rbnacl', '~> 7.1', '>= 7.1.1' spec.add_dependency 'redcarpet', '~> 3.6'