Skip to content

Instantly share code, notes, and snippets.

@DanielVartanov
Created March 27, 2009 07:19
Show Gist options
  • Save DanielVartanov/86586 to your computer and use it in GitHub Desktop.
Save DanielVartanov/86586 to your computer and use it in GitHub Desktop.
class ScheduledChemicalsOrderNotification
include ::DataMapper::Resource
#
# Properties
#
property :scheduled_at, DateTime
property :executed_at, DateTime
property :chemicals_order_id, Integer
#
# Validations
#
#
# Association
#
has 1, :chemicals_order
#
# API
#
def executed?
! self.executed_at.nil?
end
def mark_as_executed!
self.executed_at = DateTime.now
save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment