A copy of XX has been removed from the module tree but is still active! - Ruby Forum
development 環境の場合にのみ発生する。
とりあえず、config/enviroments/development.rbで、
config.cache_classes = true
にすれば回避できる。
(その代わり、コードを変更したら、developmentモードの場合もWebサーバの再起動が必要になる。)
A copy of XX has been removed from the module tree but is still active! - Ruby Forum
development 環境の場合にのみ発生する。
とりあえず、config/enviroments/development.rbで、
config.cache_classes = true
にすれば回避できる。
(その代わり、コードを変更したら、developmentモードの場合もWebサーバの再起動が必要になる。)
Rails のフォームで配列形式のデータを扱う方法 - WebOS Goodies
複数のレコードを一括編集するフォームなど。
Railsにおけるアクセサ定義系メソッドのまとめ - yamazのRails日記 - Rubyist
cattr_*
mattr_*
class_inheritable_*
class_inheritable_reader で指定した属性に値を設定するには、write_inheritable_attribute を使う。
write_inheritable_attribute :foo, "bar" class_inheritable_reader :foo