Skip to content

Instantly share code, notes, and snippets.

Created March 11, 2013 17:06
Show Gist options
  • Save anonymous/5135758 to your computer and use it in GitHub Desktop.
Save anonymous/5135758 to your computer and use it in GitHub Desktop.
Filtering Events
@events = Event.where("venue_id = ?", current_user.venue.id)
class Events
def past_events
self.select{|event| event.date < Date.today}
end
def upcoming_events
self.select{|event| event.date >= Date.today}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment