We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31946c3 commit 5c319e1Copy full SHA for 5c319e1
Rakefile
@@ -14,6 +14,7 @@ PKG_VERSION = Net::LDAP::VERSION
14
PKG_DIST = "#{PKG_NAME}-#{PKG_VERSION}"
15
PKG_TAR = "pkg/#{PKG_DIST}.tar.gz"
16
MANIFEST = File.read("Manifest.txt").split
17
+MINRUBY = "1.8.7"
18
19
Hoe.spec PKG_NAME do
20
self.readme_file = "README.markdown"
@@ -36,6 +37,10 @@ Hoe.spec PKG_NAME do
36
37
extra_dev_deps << [ "hanna", "~>0.1.2" ]
38
clean_globs << "coverage"
39
40
+ spec_extras[:required_ruby_version] = ">= #{MINRUBY}"
41
+ multiruby_skip << "1.8.6"
42
+ multiruby_skip << "1_8_6"
43
+
44
# This is a lie because I will continue to use Archive::Tar::Minitar.
45
self.need_tar = false
46
end
0 commit comments