Project

rumbly

0.0
No commit activity in last 3 years
No release in over 3 years
More detailed description coming soon...
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Rumbly - Generate UML Diagrams for Ruby Applications

Overview

Rumbly is a Ruby gem that allows you to easily generate UML class diagrams from models built using a variety of object mapping libraries, e.g. ActiveRecord, DataMapper, Mongoid, etc., all with our without Rails.

Rumbly provides a set of generic, abstract classes that are used to describe the key elements of an object model: classes, attributes, operations, and relationships. These abstract classes are not tied to a specific object mapper; mapper-specific subclasses are provided for ActiveRecord, DataMapper, and Mongoid that translate a set of model classes and relationships built on a specific object mapper into the generic model API defined by Rumbly.

These generic model objects are then used to generate UML class diagrams using a variety of diagramming tools; a diagram generator is provided that works with (and requires) Graphviz, but others can be created easily.

Althought Rumbly does not require Ruby on Rails, it provides a set of Rake tasks to make it easy to generate UML class diagrams from within a Rails application, since this is likely to be the most common use case.

Getting Started

First, install the gem:

gem install rumbly

To use Rumbly's default Graphviz output, install the latest version of Graphviz.

To run Rumbly within a Rails environment:

  • add gem 'rumby' to your Gemfile
  • run bundle install
  • run rake rumbly

About Rumbly

Rumbly was created by Dustin Frazier (ruby at frayzhe.net) based on the excellent Rails ERD by Rolf Timmermans.

Copyright © 2012 Dustin Frazier

License

Rumbly is released under the MIT license.