Method: Bundler::RubyVersion#==

Defined in:
lib/bundler/ruby_version.rb

#==(other) ⇒ Object

[View source]

72
73
74
75
76
77
# File 'lib/bundler/ruby_version.rb', line 72

def ==(other)
  versions == other.versions &&
    engine == other.engine &&
    engine_versions == other.engine_versions &&
    patchlevel == other.patchlevel
end