Skip to content

Instantly share code, notes, and snippets.

@0xSventek
Created October 4, 2011 00:45
Show Gist options
  • Save 0xSventek/1260652 to your computer and use it in GitHub Desktop.
Save 0xSventek/1260652 to your computer and use it in GitHub Desktop.
project
class Project < ActiveRecord::Base
def next
self.class.where("created_at > ?", self.created_at).order("created_at asc").first
end
def previous
self.class.where("created_at < ?", self.created_at).order("created_at desc").first
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment