Skip to content

Instantly share code, notes, and snippets.

View flov's full-sized avatar
👋
stay !false to yourself

Florian Vallen flov

👋
stay !false to yourself
View GitHub Profile
@oivoodoo
oivoodoo / routes.rake
Created March 5, 2013 10:06
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