Working with Ruby's Enumerable module
Just look at this:
class Plan < ApplicationRecord
include Comparable
def <=>(other)
tier <=> other.tier
end
end
Just look at this:
class Plan < ApplicationRecord
include Comparable
def <=>(other)
tier <=> other.tier
end
end