Skip to content

Instantly share code, notes, and snippets.

View jmorton's full-sized avatar

Jonathan Morton jmorton

View GitHub Profile
class Task < ActiveRecord::Base
include Encoder
code :status do
Status::New = "N"
Status::Pending = "P"
Status::Finished = "F"
Status::OverDue = "O"
end