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