Method: Calabash::Android::Version#>

Defined in:
lib/calabash-android/version.rb

#>(other) ⇒ Boolean

Is this version greater-than another version?

Parameters:

  • other (Version)

    the version to compare against

Returns:

  • (Boolean)

    true if this Version is greater-than ‘other`



141
142
143
# File 'lib/calabash-android/version.rb', line 141

def > (other)
  Version.compare(self, other) > 0
end