Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Ruby 2.0 (trunk ruby) is not Ruby 1.9 #1539

Merged
merged 1 commit into from
Nov 16, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/bundler/dependency.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def ruby_18?
end

def ruby_19?
ruby? && RUBY_VERSION >= "1.9"
ruby? && RUBY_VERSION >= "1.9" && RUBY_VERSION < "2.0"
end

def mri?
Expand All @@ -99,7 +99,7 @@ def mri_18?
end

def mri_19?
mri? && RUBY_VERSION >= "1.9"
mri? && RUBY_VERSION >= "1.9" && RUBY_VERSION < "2.0"
end

def rbx?
Expand Down