mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
9 lines
159 B
Ruby
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
|