Ludek Vodicka wrote: > ORM Designer serves to design ORM model definitions. Instead of writing > definitions to several text files, you will be able to design your model > in one place and then export it.
I think you'll find that your tool is designed to solve a problem that doesn't exist in Ruby on Rails. One of the primary advantages of ActiveRecord is convention over configuration. There is not a bunch of text files storing model configurations. Here is a basic ActiveRecord model class: class Post < ActiveRecord::Base has_many :comments end And that is all there is to it. ActiveRecord will get everything it needs to know from the database. There is no configuration file. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

