Skip to content

Instantly share code, notes, and snippets.

@overture8
Created October 2, 2009 19:59
Show Gist options
  • Save overture8/200062 to your computer and use it in GitHub Desktop.
Save overture8/200062 to your computer and use it in GitHub Desktop.
def find_by_date
@posts = Post.find(:all,
:conditions => ["monthname(created_at) = ? AND year(created_at) = ?",
params[:month], params[:year]])
render :action => "index"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment