summaryrefslogtreecommitdiff
path: root/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb')
-rw-r--r--lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb b/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb
index 9133332d01..b71f3eaf53 100644
--- a/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb
+++ b/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb
@@ -15,15 +15,16 @@ module Bundler::PubGrub
package.hash ^ range.hash
end
+ def ==(other)
+ package == other.package &&
+ range == other.range
+ end
+
def eql?(other)
package.eql?(other.package) &&
range.eql?(other.range)
end
- def ==(other)
- package == other.package && range == other.range
- end
-
class << self
def exact(package, version)
range = VersionRange.new(min: version, max: version, include_min: true, include_max: true)