railroady
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!)
hello, i have found if you have models like these two below class System::User < ActiveRecord::Base has_many :patients, foreign_key: "system_user_id" end class Patient < ActiveRecord::Base belongs_to :system_user, :class_name => 'System::User',...
@preston For a Rails project which uses Single Table Inheritance, I wanted to get rid of the superclasses' fields in subclasses in model diagrams. The only approach, which worked for...
I am not sure if I first create the svg file and then I convert that to a png or those the `rake diagram:all` has a second parameter to select...
**User** doesn't have any relation defined with **Rating** But **Rating** belongs_to **User** and in Models_complete.svg it has no relation marked between user and rating
Ran into frozen_string problems there
In our project, the documentation folder is called `docs`, not `doc`. It would be nice to have a config or param to the rake task that overrides the default. I...
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14] Rails 4.1.11 ``` rake diagram:all --trace ** Invoke diagram:all (first_time) ** Invoke diagram:setup:create_new_doc_folder_if_needed (first_time) ** Execute diagram:setup:create_new_doc_folder_if_needed ** Invoke diagram:models:complete (first_time) ** Execute diagram:models:complete...
Hi, I have installed railroady, but I get the error: 'Command failed with status (2)' when run 'rake diagram:all'. I am using rails v4.2.0. It creates the /doc file without...
I keep getting this when I run rake diagram:, which then means that the background color in the svg's is black or when I convert to a png transparent. Is...
Is there already some planning or support for Sequel models?