こんなのをlibに入れて利用してる。
module YamlFixture
def record_to_yaml_fixture(rec_class_name)
eval(rec_class_name).find(:all).inject({}){|h, v| h.merge(v.attributes["id"] => v.attributes)}.to_yaml
end
end
ツイート
こんなのをlibに入れて利用してる。
module YamlFixture
def record_to_yaml_fixture(rec_class_name)
eval(rec_class_name).find(:all).inject({}){|h, v| h.merge(v.attributes["id"] => v.attributes)}.to_yaml
end
end