vote up 1 vote down star

I seem to recall that there was a plugin or Rake snippet that would put comments in various Model classes after running a migration? It's a chore to have to look at db/migrate/X when I want to see which fields a given model has.

If not, I'll write one, of course. :)

flag

30% accept rate

3 Answers

vote up 2 vote down check

You may be thinking of the Annotate Models plugin at: http://repo.pragprog.com/svn/Public/plugins/annotate_models/

I believe that does exactly what you describe, although I haven't personally used it in a while, so can't vouch for its behaviour on more recent Rails versions.

Regards, NeilS.

link|flag
I used this plugin for a while but stopped also. It doesn't really solve the problem (since you often have to check to see if the annotations are still accurate, which defeats the purpose of using them), and it adds a bunch of noise to your checkin that presumably has nothing to do with most of the files that you changed by re-annotating. Just look at db/schema.rb, or if you want to solve this via overkill, figure out a way to make these annotations get dropped at checkin time and auto update during db:migrate. :) – Jamie Flournoy Aug 3 at 2:54
I'll grab the source and write an update so that it updates on db:migrate; dropping at checkin isn't really an issue for me, though. – Don Werve Aug 3 at 4:09
vote up 2 vote down

There is a school of thought that suggests you you shouldn't put attribute comments in the model as it breaks the principal of DRY. I won't argue the point. However, one real nice way of identifying attributes of the model is to simply type the Model name when you are in ./script/console

 > User
=> User(id: integer, loginname: string, password: string, fullname: string, created_at: datetime, updated_at: datetime)

I always have ./script/console session open when developing Rails.

link|flag
vote up 0 vote down

A drier approach would be:

script/console

You save two characters :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.