railroady icon indicating copy to clipboard operation
railroady copied to clipboard

Ruby on Rails 3/4/5 model and controller UML class diagram generator. (`brew/port/apt-get install graphviz` before use!)

Results 31 railroady issues
Sort by recently updated
recently updated
newest added

Hello, How can I disable the ActiveRecord:Base Inheritance (all my models are derived from it ofcourse) and the Verion model (this is from paper_trail gem). I tried to use the...

Currently tinkering railroady with spreecommerce and im getting a lot of uninitialized constant errors when generating the model using the all engines option. The model graph is blank but the...

Hi all ! I use namespaces in my application. My models are like this : School::Teacher in models/school/teacher.rb School::Student in models/school/student.rb School::Lesson in models/school/lesson.rb When I try to generate diagrams,...

Hello sir when i run `rake diagram:models:complete` it raise `Warning: exception stack level too deep raised while trying to load model class app/models/store.rb` my versions ``` ruby: 1.9.3p125 rails: 3.2.2...

Whenever I run railroady through the rake task in dev mode the very first thing that happens is rails prints out some SQL log messages, followed by the actual output....

First: Thanks for the gem. The cli works like a champ. The write-up in the README is really good. However, when I added railroady as a development dependency: ``` group...

see app model: class App < ActiveRecord::Base has_and_belongs_to_many :gateways see gateway model: class Gateway < ActiveRecord::Base has_and_belongs_to_many :apps in between these 2 models is a join table 'apps_gateways' with no...

It not that hard to discover, however would be nice to have one. Also, I noticed some of elements is a little bit different vs common UML notation, is it...

What "_one_time_conditions_valid_(someNumber)?" in controllers diagram means?

When I had some gems In my application root folder for example: -app -some_gem -some_other_gem -... Even if I use options to include all classes (-m -a -p and so...