Skip to content

Instantly share code, notes, and snippets.

@dharamgollapudi
Forked from masterkain/routes.rake
Created May 21, 2014 04:07
Show Gist options
  • Save dharamgollapudi/506cb7a5227dd9836cfe to your computer and use it in GitHub Desktop.
Save dharamgollapudi/506cb7a5227dd9836cfe to your computer and use it in GitHub Desktop.
namespace :routes do
desc "Writes doc/routes.html. Requires Graphviz (dot)"
task :visualizer => :environment do
File.open(Rails.root.join('doc', 'routes.html'), 'wb') do |f|
f.write Rails.application.routes.router.visualizer
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment