Skip to content

Instantly share code, notes, and snippets.

@tammymakesthings
Created January 27, 2012 18:48
Show Gist options
  • Save tammymakesthings/1690270 to your computer and use it in GitHub Desktop.
Save tammymakesthings/1690270 to your computer and use it in GitHub Desktop.
class Property < ActiveRecord::Base
has_many :exclusions
def excluded_on?(a_date)
self.exclusions.each do |offering|
return false if offering.start_date >= a_date && offering.end_date <= a_date
end
true
end
end
class Exclusion < ActiveRecord::Base
belongs_to :property
validates_presence_of :start_date, :end_date
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment