Sha256: b3ad2b237176b9c409241c19cd9d7ea57808d9f9726009d08da28669f785fa0e
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
require 'xommelier/atom' require 'xommelier/atom/thread' require 'active_support/core_ext' # Reading a feed feed = Xommelier::Atom::Feed.parse(open('spec/fixtures/feed.atom.xml')) puts feed.id, feed.title, feed.updated feed.entries do |entry| puts feed.id, feed.title, feed.published, feed.updated puts feed.content || feed.summary end # Building a feed feed = Xommelier::Atom::Feed.new feed.id = 'http://example.com/blog' feed.title = 'Example.com blog' entry = feed.entry = Xommelier::Atom::Entry.new( id: 'http://example.com/blog/2012/03/05', title: "Happy Xommelier's day!", updated: 5.days.ago ).tap do |entry| entry.link = Xommelier::Atom::Link.new(href: entry.id, rel: 'alternate', type: 'text/html') entry.links << Xommelier::Atom::Link.new(href: "#{entry.id}/comments.atom", rel: 'replies', type: 'application/atom+xml', count: 5) end # Add Comments 5.times do |i| feed.entries << Xommelier::Atom::Entry.new( id: "http://example.com/blog/2012/03/05#comment_#{i}", title: ('Hooray! ' * (i + 1)).strip, updated: (5 - i).days.ago ).tap do |comment| comment.in_reply_to = Xommelier::Atom::Thread::InReplyTo.new(ref: entry.id, href: entry.link.href) end end puts feed.to_xml
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xommelier-0.1.2 | examples/atom.rb |