feedjira-atypon

Atypon RSS format parser class for the Feedjira Ruby Gem

Build Status Code Climate Gem version

About the Atypon Format this Parser Handles

Atypon is a popular publishing software that many scientific journals use. The format of the RSS feed this generates is RDF with each and every element with a namespace prefix.

Example:

<rdf:RDF ...>
  <rss:channel ...>
    <rss:title ...></rss:title>
  </rss:channel>
  <rss:item ...>
    ...
  </rss:item>
  ...
</rdf:RDF>

Installation

Add this line to your application's Gemfile:

gem 'feedjira-atypon'

And then execute:

$ bundle

Or install it yourself as:

$ gem install feedjira-atypon

Configuration

You can configure Feedjira to use this parser like so:

Feedjira::Feed.add_feed_class(Feedjira::Parser::Atypon)