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