Jack
Jack

Reputation: 271

Rails to_xml override

If you have an array in Rails, to_xml will nest each object under a 'records' tag. Is there a way to override this to name it something else?

Upvotes: 0

Views: 488

Answers (1)

Jack
Jack

Reputation: 271

my_array.to_xml :root => 'foos'

Upvotes: 2

Related Questions