Replace the reference to the annotate_models plugin (unchanged since 2008) with more current annotate_models gem

This commit is contained in:
mhutchin
2011-10-07 08:16:33 -07:00
parent ddee206dfb
commit d4ea804e21

View File

@@ -628,7 +628,11 @@ There is no need (and it is error prone) to deploy a new instance of an app by r
For example, this is how the test database is created: the current development database is dumped (either to +db/schema.rb+ or +db/development.sql+) and then loaded into the test database.
Schema files are also useful if you want a quick look at what attributes an Active Record object has. This information is not in the model's code and is frequently spread across several migrations but is all summed up in the schema file. The "annotate_models":http://agilewebdevelopment.com/plugins/annotate_models plugin, which automatically adds (and updates) comments at the top of each model summarizing the schema, may also be of interest.
Schema files are also useful if you want a quick look at what attributes an Active Record object has. This information is not in the model's code and is
frequently spread across several migrations, but is summed up in the schema
file. The "annotate_models":http://github.com/ctran/annotate_models
gem automatically adds and updates comments at the top of each model summarizing
the schema if you desire that functionality.
h4. Types of Schema Dumps