Skip to content

Instantly share code, notes, and snippets.

@duyleekun
Last active August 29, 2015 14:03
Show Gist options
  • Save duyleekun/f86638fef90e4d7210df to your computer and use it in GitHub Desktop.
Save duyleekun/f86638fef90e4d7210df to your computer and use it in GitHub Desktop.
rake routes bug?
Prefix Verb URI Pattern Controller#Action
report POST /report(.:format) reports#create
new_report GET /report/new(.:format) reports#new
GET /report(.:format) reports#show
Rails.application.routes.draw do
resource :report, only: [:new,:show,:create] do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment