Skip to content

Instantly share code, notes, and snippets.

@jdx
Created November 23, 2011 10:08
Show Gist options
  • Save jdx/1388330 to your computer and use it in GitHub Desktop.
Save jdx/1388330 to your computer and use it in GitHub Desktop.
def index
@posts = Post.where(draft: false).order('post_date desc')
@post_months = @posts.group_by { |p| p.post_date.beginning_of_month }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment