Web Development
rubyrss.txt
Associated article: RSS, Ruby, & the Web
Tags: Web Development
Published source code accompanying the article by Dave Thomas in which he uses the libraries that come with Ruby 1.8.2 to make working with the web and RSS easy.
RSS, Ruby, & the Web
by Dave Thomas
Listing One
require 'webrick'
server = WEBrick::HTTPServer.new(:Port => 2000, :DocumentRoot => "html")
trap("INT") { server.shutdown }
server.start
Listing Two
class Article
attr_reader :file_name, :title, :...


