Skip to content

Instantly share code, notes, and snippets.

@nitsujw
Created November 10, 2008 21:31
Show Gist options
  • Save nitsujw/23641 to your computer and use it in GitHub Desktop.
Save nitsujw/23641 to your computer and use it in GitHub Desktop.
def show(day, month, year, title)
@post = Post.first(:conditions => ['day = ? AND month = ? AND year = ? AND title LIKE ?', day, month, year, "#{title}%"])
raise NotFound unless @post
@comments = @post.comments
display @post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment