Welcome to mirror list, hosted at ThFree Co, Russian Federation.

grape.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9980e0b7984b6aee4a9e63544810839bd2b66498 (plain)
1
2
3
4
5
6
7
8
namespace :grape do
  desc 'Print compiled grape routes'
  task routes: :environment do
    API::API.routes.each do |route|
      puts route
    end
  end
end