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