You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
174 B
10 lines
174 B
9 years ago
|
Nokogiri::XML::Builder.new do |xml|
|
||
9 years ago
|
entry(xml, true) do
|
||
|
author(xml) do
|
||
9 years ago
|
include_author xml, @entry.account
|
||
9 years ago
|
end
|
||
|
|
||
9 years ago
|
include_entry xml, @entry
|
||
9 years ago
|
end
|
||
9 years ago
|
end.to_xml
|