Ruby/Ruby On Rails/Tips のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Ruby/Ruby On Rails/Tips へ行く。
- 1 (2007-08-27 (月) 13:55:22)
- 2 (2007-08-27 (月) 14:36:33)
- 3 (2007-08-28 (火) 14:14:00)
Ruby On Rails - tips
Annotate Models Plugin
- インストール
script/plugin install http://svn.pragprog.com/Public/plugins/annotate_models
- 使い方
rake annotate_models
これでapp/models以下のファイルに下記のようなコメントをDBから抽出してつけてくれます.# Schema as of Mon Feb 27 00:55:58 CST 2006 (schema version 7) # # id :integer(11) not null # name :string(255) # description :text # image_location :string(255) # price :float default(0.0) # available_at :datetime # class Product < ActiveRecord::Base validates_presence_of :name, :description . . .
一応バックアップはとってください.