2016-02-22 20:11:07 +02:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
2016-02-23 14:08:01 +02:00
|
|
|
entry(xml, true) do
|
|
|
|
author(xml) do
|
2016-02-29 21:06:39 +02:00
|
|
|
include_author xml, @stream_entry.account
|
2016-02-22 20:11:07 +02:00
|
|
|
end
|
|
|
|
|
2016-02-29 21:06:39 +02:00
|
|
|
include_entry xml, @stream_entry
|
2016-02-22 20:11:07 +02:00
|
|
|
end
|
2016-02-23 20:17:37 +02:00
|
|
|
end.to_xml
|