Skip to content

Instantly share code, notes, and snippets.

@graudeejs
Forked from oivoodoo/routes.rake
Created November 8, 2015 12:44
Show Gist options
  • Save graudeejs/7820a795a5cd2528c98f to your computer and use it in GitHub Desktop.
Save graudeejs/7820a795a5cd2528c98f 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