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.
2017-02-10 17:12:05 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module StreamEntryRenderer
|
|
|
|
def stream_entry_to_xml(stream_entry)
|
2017-04-06 20:56:56 -07:00
|
|
|
AtomSerializer.render(AtomSerializer.new.entry(stream_entry, true))
|
2017-02-10 17:12:05 -08:00
|
|
|
end
|
|
|
|
end
|