Skip to content

Instantly share code, notes, and snippets.

@pier-oliviert
Created March 31, 2015 18:10
Show Gist options
  • Select an option

  • Save pier-oliviert/a7ffde4f2ff23a5fb42f to your computer and use it in GitHub Desktop.

Select an option

Save pier-oliviert/a7ffde4f2ff23a5fb42f to your computer and use it in GitHub Desktop.
class Post
end
Application.routes.draw do
get '/:year/:month/:id', controller: :posts, action: :show, constraints: { year: /\d+/, month: /\d+/ }, as: "post"
end
post_path(post)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment