BigW Consortium Gitlab

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