Skip to content

Commit

Permalink
💚 Updated / added Gem versions
Browse files Browse the repository at this point in the history
Shenanigans around unspecified versions in Gemfile and old versions in .gemspec were causing Github Action build failures
  • Loading branch information
mkarlesky committed Nov 28, 2024
1 parent 6061ccf commit 6422aca
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
source "http://rubygems.org/"

gem "bundler", "~> 2.5"
gem "rake"
gem "rspec", "~> 3.8"
gem "require_all"
gem "constructor"
gem "diy"
gem "rake", ">= 12", "< 14"
gem "rr"
gem "thor"
gem "deep_merge"
gem "unicode-display_width"
gem "require_all"
gem "diy", "~> 1.1"
gem "constructor", "~> 2"
gem "thor", "~> 1.3"
gem "deep_merge", "~> 1.2"
gem "unicode-display_width", "~> 3.1"

#these will be used if present, but ignored otherwise
#gem "curses"
Expand Down
28 changes: 15 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,24 @@ GEM
constructor (>= 1.0.0)
rake (13.2.1)
require_all (3.0.0)
rr (3.1.0)
rr (3.1.1)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-core (3.13.2)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.1)
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
thor (1.3.1)
unicode-display_width (2.5.0)
thor (1.3.2)
unicode-display_width (3.1.2)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)

PLATFORMS
ruby
Expand All @@ -34,15 +36,15 @@ PLATFORMS

DEPENDENCIES
bundler (~> 2.5)
constructor
deep_merge
diy
rake
constructor (~> 2)
deep_merge (~> 1.2)
diy (~> 1.1)
rake (>= 12, < 14)
require_all
rr
rspec (~> 3.8)
thor
unicode-display_width
thor (~> 1.3)
unicode-display_width (~> 3.1)

BUNDLED WITH
2.5.10
2.5.23
3 changes: 2 additions & 1 deletion ceedling.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ Ceedling projects are created with a YAML configuration file. A variety of conve
s.add_dependency "thor", "~> 1.3"
s.add_dependency "rake", ">= 12", "< 14"
s.add_dependency "deep_merge", "~> 1.2"
s.add_dependency "diy", "~> 1.1"
s.add_dependency "constructor", "~> 2"
s.add_dependency "unicode-display_width", "~> 2.5"
s.add_dependency "unicode-display_width", "~> 3.1"

# Files needed from submodules
s.files = []
Expand Down

0 comments on commit 6422aca

Please sign in to comment.