class AboveAll

Public Class Methods

new() click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 138
def initialize()
end

Public Instance Methods

!=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 169
def !=(other_cut)
  !(self == other_cut)
end
<(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 149
def <(other_cut)
  false
end
<=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 157
def <=(other_cut)
  self < other_cut || self == other_cut
end
==(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 165
def ==(other_cut)
  (other_cut.instance_of? AboveAll) ? true : false
end
>(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 153
def >(other_cut)
  other_cut.instance_of?(AboveAll) ? false : true
end
>=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 161
def >=(other_cut)
  self > other_cut || self == other_cut
end
is_initial_version?() click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 145
def is_initial_version?
  false
end
is_successor_of?(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 173
def is_successor_of?(other_cut)
  !other_cut.instance_of?(AboveAll)
end
to_s() click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 141
def to_s
  "+inf"
end