This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-02-22 19:11:07 +01:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
2016-02-23 13:08:01 +01:00
|
|
|
entry(xml, true) do
|
|
|
|
author(xml) do
|
2016-02-29 20:06:39 +01:00
|
|
|
include_author xml, @stream_entry.account
|
2016-02-22 19:11:07 +01:00
|
|
|
end
|
|
|
|
|
2016-02-29 20:06:39 +01:00
|
|
|
include_entry xml, @stream_entry
|
2016-02-22 19:11:07 +01:00
|
|
|
end
|
2016-02-23 19:17:37 +01:00
|
|
|
end.to_xml
|