class BelowAll

Public Class Methods

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

Public Instance Methods

!=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 128
def !=(other_cut)
  !(self == other_cut)
end
<(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 108
def <(other_cut)
  other_cut.instance_of?(BelowAll) ? false : true
end
<=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 116
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 124
def ==(other_cut)
  (other_cut.instance_of? BelowAll) ? true : false
end
>(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 112
def >(other_cut)
  false
end
>=(other_cut) click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 120
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 104
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 132
def is_successor_of?(other_cut)
  false
end
to_s() click to toggle source
# File lib/semver_dialects/semantic_version/version_cut.rb, line 100
def to_s
  "-inf"
end