Sequence Diagram generator for Ruby or Ruby on Rails

kitz

Is there an application / gem / anything that can generate sequence diagram for Ruby method? I need to generate some sequence diagrams for a Ruby on Rails project and I cannot find anything that can help me.

Thanks!

aashish

I know about gems rails-erd or railroady. which can generate UML diagrams for a rails application. Add any one to your Gemfile and generate a uml diagram

gem "rails-erd"

In terminal run

ubuntu:~/rails-app$ bundle install
ubuntu:~/rails-app$ bundle exec erd

or

gem 'railroady'

In terminal run

ubuntu:~/rails-app$ bundle install
ubuntu:~/rails-app$ railroady -o models.dot -M 
ubuntu:~/rails-app$ dot -Tpng models.dot > models.png

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related