We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#API namespace Greeby::Engine
##RSS ###initialize(url) Grabs rss feeds via the given url.
###parse Internal use for parsing rss.
###digest returns hashed string to distinguish from different RSS.
###to_json(options) Returns parsed RSS object in json format.
##Page ###initialize(url) Grabs web page via the given url.
###parse Internal use for parsing web page.
###digest returns hashed string to distinguish from different page.
###content returns parsed page content.
A RSS channel object contains a title and many feeds. Call RSS#to_json to get this object.
##RSS
{ channel: 'channel-name', language: 'channel-language', feeds: [ { title: 'feed-title', link: 'feed-link', published_at: 'feed-published-time', content: 'feed-content-in-html' }, ... ] }