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