Railsドキュメント

ダイレクトまたは通常の名前のルート

適応バージョン

説明

ダイレクトまたは通常の名前のルート

使い方

route_for(名前, パス..)

resources :buckets
direct :recordable do |recording|
    route_for(:bucket, recording.bucket)
end
direct :threadable do |threadable|
    route_for(:recordable, threadable.parent)
end

ソースコード