Sha256: 5cb2a97f523a52fe6200984927b85344f1e2c648867f54a1e3b5df99cf99f756

Contents?: true

Size: 616 Bytes

Versions: 7

Compression:

Stored size: 616 Bytes

Contents

xml.instruct! :xml, :version => "1.0"
xml.rss "xmlns:dc" => "http://purl.org/dc/elements/1.1/", :version => "2.0" do
  xml.channel do
    xml.title @title
    xml.description @description
    xml.link 'http://' + @domain + posts_index_path

    for post in @posts
      xml.item do
        xml.title post.title
        xml.description post.subtitle
        xml.pubDate post.published_at.to_s(:rfc822)
        xml.link 'http://' + @domain + posts_show_path(post)
        xml.guid 'http://' + @domain + posts_show_path(post.id.to_s)
        xml.category post.category.title if post.category
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
character-1.0.6 app/views/posts/rss.builder
character-1.0.5 app/views/posts/rss.builder
character-1.0.4 app/views/posts/rss.builder
character-1.0.3 app/views/posts/rss.builder
character-1.0.2 app/views/posts/rss.builder
character-1.0.1 app/views/posts/rss.builder
character-1.0.0 app/views/posts/rss.builder