Skip to content

Instantly share code, notes, and snippets.

@eqbal
Created December 6, 2016 13:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eqbal/c509a81baa335c5ab2bb96e4fbd21e6a to your computer and use it in GitHub Desktop.
Save eqbal/c509a81baa335c5ab2bb96e4fbd21e6a to your computer and use it in GitHub Desktop.
class EntryStatus
include Comparable
class NotValidEntryStatus < StandardError; end
OPTIONS = {
weather: %w(Sunny Rainy Windy Dry),
landform: %w(Beach Cliff Desert Flat)
}
attr_reader :weather, :landform
def initialize(weather, landform)
@weather, @landform = weather, landform
end
def <=>(other)
weather == other.weather && landform == other.landform
end
end
@jfnixon
Copy link

jfnixon commented Dec 22, 2016

Yeah, you must implement <=> for Comparable, but there is no obvious sort order for EntryStatus instances to determine whether to return 1 or -1. If you try to sort EntryStatus instances, there might be problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment