Skip to content

Instantly share code, notes, and snippets.

@oivoodoo
Created March 5, 2013 10:06
Show Gist options
  • Save oivoodoo/5089237 to your computer and use it in GitHub Desktop.
Save oivoodoo/5089237 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
@syedmusamah
Copy link

Amazing! Glad its still helping people :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment