Project

house.rb

0.0
No commit activity in last 3 years
No release in over 3 years
The Podcast RSS Reader and Diagnostician
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 9
~> 0.9.2
~> 2.4
~> 1.3

Runtime

 Project Readme

House

💊 The Podcast RSS Reader and Diagnostician

📍 This is a refactor/fork of kule/podcast_reader, thanks @kule for the efforts so far!

Installation

Add this line to your application's Gemfile:

gem "house.rb"

And then execute:

$ bundle

Or install it yourself as:

$ gem install house.rb

Usage

require "house.rb"

podcast = House::Podcast.new("http://feeds.feedburner.com/developertea")

pocast.title
pocast.description
pocast.title
pocast.description
pocast.language
pocast.last_build_date
pocast.site_link

podcast.image_url
podcast.image_title
podcast.image_link

podcast.author
podcast.subtitle
podcast.summary

podcast.publish_date

podcast.keywords
podcast.explicit?
podcast.download_image_to("./podcast_image.jpg")
podcast.updated_since(Time.now)
podcast.items.size

episode = podcast.items.first

episode.title
episode.description
episode.category
episode.author
episode.subtitle
episode.summary
episode.duration
episode.url
episode.content_type
episode.file_size

episodes.download_to("./podcast_track.mp3")