ルビーのクラスがあります
class MyClass
include Tire::Model::Persistence
attr_accessor :date
mapping do
index_name Proc.new{|o| "my_class_#{o.date_index}" } # How to?
end
def initialize(d)
@date = d
end
def date_index
@date.strftime("%m%y")
end
end
クラスを初期化した後、index_nameを動的に設定するにはどうすればよいですか?
Ruby(1.9.3)Rails(3.2.3)タイヤ(0.4.2)