summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/dependency.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb
index 995b945af4..453d568e58 100644
--- a/lib/bundler/dependency.rb
+++ b/lib/bundler/dependency.rb
@@ -87,7 +87,7 @@ module Bundler
end
def ruby_19?
- ruby? && RUBY_VERSION >= "1.9" && RUBY_VERSION < "2.0"
+ ruby? && RUBY_VERSION >= "1.9"
end
def mri?
@@ -99,7 +99,7 @@ module Bundler
end
def mri_19?
- mri? && RUBY_VERSION >= "1.9" && RUBY_VERSION < "2.0"
+ mri? && RUBY_VERSION >= "1.9"
end
def rbx?