From 2ae8ceff5030fe238c946fc75d57a83ef73e2512 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Mon, 18 Dec 2023 21:15:13 -0800 Subject: [PATCH] Remove most runtime gems and instead add them to gemfile --- Gemfile | 10 +++++++--- Gemfile.lock | 12 ++++++------ atlasq.gemspec | 3 --- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index 1c19fd6..96cab3a 100644 --- a/Gemfile +++ b/Gemfile @@ -5,10 +5,14 @@ source "https://rubygems.org" # Specify your gem's dependencies in atlasq.gemspec gemspec -gem "rake", "~> 13.0" +gem "rake" -gem "minitest", "~> 5.0" +gem "minitest" -gem "rubocop", "~> 1.21" +gem "rubocop" gem "rubocop-minitest" gem "rubocop-rake" + +gem "countries" +gem "iso-639" +gem "money" diff --git a/Gemfile.lock b/Gemfile.lock index bd5daf9..471f49d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,9 +2,6 @@ PATH remote: . specs: atlasq (0.2.0) - countries (~> 5.7) - iso-639 (~> 0.3) - money (~> 6.9) tty-pager (~> 0.14) GEM @@ -67,9 +64,12 @@ PLATFORMS DEPENDENCIES atlasq! - minitest (~> 5.0) - rake (~> 13.0) - rubocop (~> 1.21) + countries + iso-639 + minitest + money + rake + rubocop rubocop-minitest rubocop-rake diff --git a/atlasq.gemspec b/atlasq.gemspec index 55147c0..dd92448 100644 --- a/atlasq.gemspec +++ b/atlasq.gemspec @@ -26,8 +26,5 @@ Gem::Specification.new do |spec| spec.bindir = "exe" spec.executables = ["atlasq"] - spec.add_dependency "countries", "~> 5.7" - spec.add_dependency "iso-639", "~> 0.3" - spec.add_dependency "money", "~> 6.9" spec.add_dependency "tty-pager", "~> 0.14" end