No commit activity in last 3 years
No release in over 3 years
You get some patches for Blather and some classes that wrap the stuff you want from Superfeedr (entries, authors etc.). Under-the-hood, Blather uses EventMachine and Nokogiri so it’s fast and convenient. If you want to daemonize your client, daemon-kit comes ready with a blather template.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.4
 Project Readme

superfeedr-blather¶ ↑

superfeedr-blather implements a Superfeedr PubSub XMPP client in Ruby using the Blather gem.

Starting up a connection and echoing new notifications is as easy as this:

setup YOUR_SUPERFEEDR_USERNAME, YOUR_SUPERFEEDR_PASSWORD

pubsub_event do |e|
  e.items.each do |i|
    puts "New post from #{i.entry.title}:"
    puts i.entry.content
  end
end

About¶ ↑

You get some patches for Blather and some classes that wrap the stuff you want from Superfeedr (entries, authors etc.).

Under-the-hood, Blather uses EventMachine and Nokogiri so it’s fast and convenient. If you want to daemonize your client, daemon-kit comes ready with a blather template.

You might want to compare Superfeedr’s own superfeedr-ruby which is based on a different XMPP lib, Skates.

Tips¶ ↑

Take a look in /examples for examples of handling notifications, (un)subscribing, and fetching the list of subscriptions.

When you’re playing around, subscribe to Superfeedr’s dummy.xml feed and use the button on www.superfeedr.com/users/kapoq/feeds/xmpp_console to generate a new notification on demand (“show console” displays the button).

Install¶ ↑

git clone git://github.com/kapoq/superfeedr-blather.git

Source and latest version¶ ↑

superfeedr-blather lives at github.com/kapoq/superfeedr-blather.

Stop by and say hi some time (contribs welcome).

Author¶ ↑

Dave Nolan / Kapoq Ltd / kapoq.com

TODO¶ ↑

  • apply patches upstream to blather

    • loading filename conflicts using bundler

    • multiple namespaces

  • improve type-casting

  • implement Superfeedr notifications extensions:

    • stripped

    • chunks (No mention in the Superfeedr schema docs but is used elsewhere)