method

concerns

rails latest stable - Class: ActionDispatch::Routing::Mapper::Mapping::Concerns

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

concerns(*args, **options)
public

Use the named concerns

resources :posts do
  concerns :commentable
end

Concerns also work in any routes helper that you want to use:

namespace :posts do
  concerns :commentable
end