I have a controller with a number of actions:
class TestsController < ApplicationController def find end def break end def turn end en
You can specify actions you want to route like this:
resources :tests, except: [:new, :create, :edit, :update, :destroy] do collection do get 'find' get 'break' get 'turn' end end