Skip to content

Instantly share code, notes, and snippets.

@Fercell
Created June 21, 2018 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fercell/b7125354e1d3608bf7f52ca8a55813c5 to your computer and use it in GitHub Desktop.
Save Fercell/b7125354e1d3608bf7f52ca8a55813c5 to your computer and use it in GitHub Desktop.
def inactive?
case self.class
when Load
binding.pry
status.eql?('canceled')
when Truck, Trailer
status.eql?('disabled')
when Customer
status.eql?('inactive')
when Driver
status.eql?('suspended')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment