summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-04-12 19:05:26 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-06-26 18:02:07 +0200
commitd6c9196d184366694fafb4fedfd72ec375bebaf8 (patch)
treeba01cda4b1131f36affb640216675cfaa6d335b9 /Rakefile
parent547975644e93d1c421a468ab5e2396b5b953158b (diff)
downloadbundler-d6c9196d184366694fafb4fedfd72ec375bebaf8.tar.gz
RUBY_ENGINE should always be defined after 1.8.7ruby_engine_always_defined
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 00b64638a9..585f507b6b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -47,7 +47,7 @@ namespace :spec do
end]
# JRuby can't build ronn, so we skip that
- deps.delete("ronn") if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
+ deps.delete("ronn") if RUBY_ENGINE == "jruby"
gem_install_command = "install --no-document --conservative " + deps.sort_by {|name, _| name }.map do |name, version|
"'#{name}:#{version}'"