Skip to content

Instantly share code, notes, and snippets.

@nononoy
Forked from oivoodoo/routes.rake
Created March 3, 2016 08:48
Show Gist options
  • Save nononoy/6b7044231fb561ab5234 to your computer and use it in GitHub Desktop.
Save nononoy/6b7044231fb561ab5234 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