Class: RubyNative::NativeVersion

Inherits:
Gem::Version
  • Object
show all
Defined in:
lib/ruby_native/native_version.rb

Instance Method Summary collapse

Instance Method Details

#<=>(other) ⇒ Object



3
4
5
6
# File 'lib/ruby_native/native_version.rb', line 3

def <=>(other)
  other = self.class.new(other) if other.is_a?(String)
  super
end