Something that generates an image or something to show that ModelA has_many ModelB etc?
Just found out about Rails ERD.
Looks pretty awesome!
Rubymine can generate that for you. It is an awesome tool.
Try rails_assviz and RailRoad.
One more ancient plugin for zombie lovers is Rails Application Visualizer.
If using rails_assviz then you need to modify the line that loads active support to get it to work by adding /all to: require 'active_support'
Original:
#Checks for active_support
begin
require 'active_support'
rescue LoadError
raise "Install the Ruby on Rails gem: gem install rails"
return false
end
Modified:
#Checks for active_support
begin
require 'active_support/all'
rescue LoadError
raise "Install the Ruby on Rails gem: gem install rails"
return false
end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With