summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index aba3346f34..2c60046339 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,11 +44,8 @@ namespace :spec do
[d.name, d.requirement.to_s]
end]
- # JRuby can't build ronn or rdiscount, so we skip that
- if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
- deps.delete("ronn")
- deps.delete("rdiscount")
- end
+ # JRuby can't build ronn, so we skip that
+ deps.delete("ronn") if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
gem_install_command = "install --no-document --conservative " + deps.sort_by {|name, _| name }.map do |name, version|
"'#{name}:#{version}'"