grape_routes.rb 255 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 desc "Print out grape routes" task :grape_routes => :environment do #require 'api/api.rb' Noosfero::API::API.routes.each do |route| puts route method = route.route_method path = route.route_path puts " #{method} #{path}" end end