Method: Bundler::PubGrub::VersionRange#==
- Defined in:
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb
permalink #==(other) ⇒ Object
[View source]
390 391 392 393 394 395 396 |
# File 'lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb', line 390 def ==(other) self.class == other.class && min == other.min && max == other.max && include_min == other.include_min && include_max == other.include_max end |