Skip to content

Commit

Permalink
Pin test-unit gem to ensure CI works on Ruby 1.9 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson authored Dec 25, 2024
1 parent 99a851c commit 6eab99f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ if Gem::Requirement.new(">= 3.3").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "base64"
end

gem "test-unit", "~> 3.5"
if Gem::Requirement.new("< 2.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "test-unit", "~> 3.5.9"
else
gem "test-unit", "~> 3.5"
end

0 comments on commit 6eab99f

Please sign in to comment.