class Meer::CLI::ReverseOrder

Attributes

obj[R]

Public Class Methods

new(obj) click to toggle source
# File lib/meer/cli.rb, line 128
def initialize obj
  @obj = obj
end

Public Instance Methods

<=>(other) click to toggle source
# File lib/meer/cli.rb, line 132
def <=>(other)
  -(@obj <=> other.obj)
end