毎回忘れるのでメモです。
memberとcollectionを利用する
GET /matomes/search
で search アクションを呼ぶには以下のように設定する。
# config/routes.rb
resources :matomes do
collection do
get :search
end
end
:id 付きのルーティングの場合はmemberを利用する。
GET /matomes/:id/preview
とする場合。
# config/routes.rb
resources :matomes do
member do
get :preview
end
end
参考URL: http://akkunchoi.github.io/rails3-routes.html#member-collection---