Skip to content

Instantly share code, notes, and snippets.

@trungdq88
Forked from oivoodoo/routes.rake
Created February 5, 2018 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trungdq88/d7b86491827cd10cbc16952b973418b5 to your computer and use it in GitHub Desktop.
Save trungdq88/d7b86491827cd10cbc16952b973418b5 to your computer and use it in GitHub Desktop.
rake task for printing grape routes.
namespace :grape do
desc 'Print compiled grape routes'
task :routes => :environment do
API.routes.each do |route|
puts route
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment