Skip to content

Instantly share code, notes, and snippets.

@rafapolo
Created March 23, 2012 21:16
Show Gist options
  • Save rafapolo/2175131 to your computer and use it in GitHub Desktop.
Save rafapolo/2175131 to your computer and use it in GitHub Desktop.
modelos do activerecord atuam como adjacentes
def previous
Arquivo.where('arquivos.ordem < ?', self.ordem).order('ordem ASC').last
end
def next
Arquivo.where('arquivos.ordem > ?', self.ordem).order('ordem ASC').first
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment