BigW Consortium Gitlab

grape.rake 159 Bytes
Newer Older
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