Skip to content

Commit

Permalink
Fix minitest bundler issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Sep 16, 2018
1 parent e49f085 commit 8dfb5fc
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 @@ -31,6 +31,10 @@ else
gem "activesupport", version
end

gem "test-unit", '~> 3' if (version >= '3.2.22' || version == '3-2-stable') && version < '4.0.0'
if version < '4.0.0'
gem "test-unit", '~> 3' if (version >= '3.2.22' || version == '3-2-stable')
else
gem "minitest", require: false
end

gem "i18n", '< 0.7.0' if RUBY_VERSION < '1.9.3'

0 comments on commit 8dfb5fc

Please sign in to comment.