summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2018-09-06 12:39:29 -0800
committerRyan Davis <ryand@zenspider.com>2018-09-06 12:39:29 -0800
commit79633c894423cccfe5589937ab7f6983a50ba6fc (patch)
tree8773605f7b0c9991fcaaf850dd570c0b047493ed /lib
parent0916e2ecf5f02329f6aa57a6a44413b2ce8b33a1 (diff)
downloadhoe-79633c894423cccfe5589937ab7f6983a50ba6fc.tar.gz
- Bumped dependencies on rdoc and rake for latest majors.
[git-p4: depot-paths = "//src/hoe/dev/": change = 11723]
Diffstat (limited to 'lib')
-rw-r--r--lib/hoe.rb2
-rw-r--r--lib/hoe/publish.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/hoe.rb b/lib/hoe.rb
index f7ad290..adbd8d8 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -471,7 +471,7 @@ class Hoe
case name
when "hoe" then
- dependency "rake", [">= 0.8", "< 11.0"]
+ dependency "rake", [">= 0.8", "< 13.0"]
else
version = VERSION.split(/\./).first(2).join(".")
dependency "hoe", "~> #{version}", :development
diff --git a/lib/hoe/publish.rb b/lib/hoe/publish.rb
index 4f33526..06dda00 100644
--- a/lib/hoe/publish.rb
+++ b/lib/hoe/publish.rb
@@ -100,7 +100,7 @@ module Hoe::Publish
# Declare a dependency on rdoc, IF NEEDED.
def activate_publish_deps
- dependency "rdoc", [">= 4.0", "< 6"], :developer if need_rdoc
+ dependency "rdoc", [">= 4.0", "< 7"], :developer if need_rdoc
end
##