Noosfero/noosfero

View on GitHub
lib/tasks/grape_routes.rb

Summary

Maintainability
A
0 mins
Test Coverage
desc "Print out grape routes"
task grape_routes: :environment do
  # require 'api/api.rb'
  Api::App.routes.each do |route|
    puts route
    method = route.route_method
    path = route.route_path
    puts "     #{method} #{path}"
  end
end