Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arthurgeek-rfeedparser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arthurgeek-rfeedparser

  • 0.9.940
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= Universal Feed Parser http://rfeedparser.rubyforge.org Original Python code Copyright (c) 2002-5 by Mark Pilgrim Ruby port by Jeff Hodges.

== Description

Parse nearly any RSS and Atom feeds in Ruby. 3000 unit tests. Open source.

== Installation

For Debian-based systems:

$ sudo apt-get install libxml-ruby1.8 # or libxml-parser-ruby1.8

TODO: dependency installation instructions for other platforms.

And then:

$ sudo gem install rfeedparser

Or for the latest development version:

$ git clone git://github.com/technomancy/rfeedparser.git

Dependencies on other gems are handled by rubygems, but rfeedparser also relies on having bindings to a native XML parsing library. The recommended choice is libxml, which is installable with the libxml-ruby1.8 package in Debian-based systems. But it can also fall back to expat (the libxml-parser-ruby1.8 Debian package) if libxml is not installed.

== Usage

require 'rubygems' # may omit if installed manually require 'rfeedparser'

feed = FeedParser.parse("some-feed-stream-filepath-or-url")

feed.entries.each do |e| puts e.title puts e.content puts e.published puts '----' end

== Contributing

Clone the git repository at git://github.com/jmhodges/rfeedparser.git and which has a webpage at http://github.com/jmhodges/rfeedparser/tree/master.

FAQs

Package last updated on 11 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc