gitlab-org--gitlab-foss/lib/tasks/grape.rake

9 lines
159 B
Ruby

namespace :grape do
desc 'Print compiled grape routes'
task routes: :environment do
API::API.routes.each do |route|
puts route
end
end
end