DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Annotate Models
$ ruby script/plugin install http://repo.pragprog.com/svn/Public/plugins/annotate_models/
The plugin adds a new rake task for you to generate the model annotations:
$ rake annotate_models
Here's a sample of what the plugin adds to your model:
# Schema version: 3 # # Table name: programs # # id :integer(11) not null, primary key # title :string(255) # description :text # asset_url :string(255) # link :string(255) # language :string(255) # author :string(255) # class Program<ActiveRecord::Base end





