Method: RunLoop::Version#!=

Defined in:
lib/run_loop/version.rb

#!=(other) ⇒ Boolean

Compare this version to another for inequality.

Parameters:

  • other (Version)

    the version to compare against

Returns:

  • (Boolean)

    true if this Version is not the same as ‘other`



118
119
120
# File 'lib/run_loop/version.rb', line 118

def != (other)
  Version.compare(self, other) != 0
end