Skip to content

Instantly share code, notes, and snippets.

@aurels
Created October 14, 2009 09:57
Show Gist options
  • Save aurels/209936 to your computer and use it in GitHub Desktop.
Save aurels/209936 to your computer and use it in GitHub Desktop.
# Building UML graphs with railroad for Rails
lib/tasks/uml.rake
namespace :uml do
desc 'Builds UML graphs for the project'
task :build do
`railroad -M | dot -Tpng > models.png`
`railroad -C | dot -Tpng > controllers.png`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment