Skip to content

Commit

Permalink
Remove most runtime gems and instead add them to gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
apainintheneck committed Dec 19, 2023
1 parent adb4fc6 commit 2ae8cef
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
10 changes: 7 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
3 changes: 0 additions & 3 deletions atlasq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2ae8cef

Please sign in to comment.