From 4dea5f74319a743a88f77f4efe0226054a955a25 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Thu, 14 May 2015 20:46:15 +0200 Subject: Separate lib and executable. Add a separate executable, and move the rendering of the feeds into the feed class. --- bin/rss2html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 bin/rss2html (limited to 'bin') diff --git a/bin/rss2html b/bin/rss2html new file mode 100755 index 0000000..b7be920 --- /dev/null +++ b/bin/rss2html @@ -0,0 +1,35 @@ +#!/usr/bin/env ruby +# +# A Simple RSS reader +# Copyright (C) 2015 Harald Eilertsen +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +require 'rss2html' +require 'yaml' + +config_file = File.expand_path('~/.config/feeds.yml') + +unless File.exists?(config_file) + puts "Config file #{config_file} not found. Please create it!" + exit +end + +feeds = YAML.load(IO.read(config_file)) +items = [] + +feeds.each do |t, f| + feed = Feed.new(t, f) + puts feed.render +end -- cgit v1.2.3