Created
February 28, 2014 08:29
Revisions
-
sineed created this gist
Feb 28, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ class NestedAttributesForStrategy def association(runner) runner.run end def result(evaluation) evaluation.object.tap do |instance| evaluation.notify(:after_build, instance) return attributes(instance) end end private def attributes(instance) attrs = instance.attributes.delete_if do |k, _| %w(id type created_at updated_at).include?(k) end nested_reflections(instance).each do |ref| attrs.merge!("#{ref.name}_attributes" => instance.send(ref.name).map do |nested_obj| attributes(nested_obj) end) end attrs end def nested_reflections(instance) instance.reflections.values.select do |ref| ref.macro == :has_many && instance.respond_to?("#{ref.name}_attributes=") end end end