2016-02-23 03:11:07 +09:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
2016-02-23 21:08:01 +09:00
|
|
|
entry(xml, true) do
|
|
|
|
author(xml) do
|
2016-03-01 04:06:39 +09:00
|
|
|
include_author xml, @stream_entry.account
|
2016-02-23 03:11:07 +09:00
|
|
|
end
|
|
|
|
|
2016-03-01 04:06:39 +09:00
|
|
|
include_entry xml, @stream_entry
|
2016-02-23 03:11:07 +09:00
|
|
|
end
|
2016-02-24 03:17:37 +09:00
|
|
|
end.to_xml
|