RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Added new JSON Feed (@jsonfeed) format to the (universal) feedparser gem

Hello, I’ve added support for reading feeds in the new JSON Feed format in - surprise, surprise - JSON to the universal feedparser gem. Nothing changes if you read in feeds in xml or json ;-) Use it like:

require 'open-uri'
require 'feedparser'

txt = open( 'https://jsonfeed.org/feed.json' ).read
feed = FeedParser::Parser.parse( txt )
pp feed

Enjoy. Cheers.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in