Skip to content

Commit 4f8f2da

Browse files
committed
Fix hoe issue in Gemfile
1 parent a140754 commit 4f8f2da

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ gem "mini_portile", "~>0.6.2", :group => [:development, :test]
1212
gem "hoe-bundler", "~>1.0", :group => [:development, :test]
1313
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
1414
gem "rdoc", ">=4.0", "<6", :group => [:development, :test]
15-
gem "hoe", "~>3.17", :group => [:development, :test]
15+
16+
# hoe versions >= 3.19.0 are incompatible with Ruby 2.0 and earlier,
17+
# but the gemspec does not indicate so...
18+
gem "hoe", (RUBY_VERSION < "2.1" ? "3.18.1" : "~>3.20"), :group => [:development, :test]
1619

1720
# vim: syntax=ruby

0 commit comments

Comments
 (0)