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