debian-mirror-gitlab/lib/tasks/grape.rake

9 lines
159 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
namespace :grape do
desc 'Print compiled grape routes'
task routes: :environment do
API::API.routes.each do |route|
puts route
end
end
end