Created
May 30, 2011 16:38
-
-
Save rramsden/999130 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 characters
Website.reflect_on_all_associations( :has_many ).each do | assoc | | |
instance_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1 | |
if #{assoc.name}.first.respond_to?(:to_backup) | |
xml.#{assoc.name} do | |
#{assoc.name}.each {|collection| xml << collection.to_backup} | |
end unless #{assoc.name}.blank? | |
end | |
RUBY_EVAL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment