0.0
No commit activity in last 3 years
No release in over 3 years
Atypon RSS format parser for Feedjira
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 2.1
 Project Readme

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)