Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
非フィールドを使用できる一時的なものがありますが、データベースに保存せずにオブジェクトを維持しています:
例えば:
class User dont-store :birthday end
普通の古いものを使用してattr_accessorください。
attr_accessor
class Customer field :name # this is stored attr_accessor :credit_card # does not get stored end