diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-05-14 20:46:15 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-05-14 20:46:15 +0200 |
commit | 4dea5f74319a743a88f77f4efe0226054a955a25 (patch) | |
tree | ebe9358407dd5e4a4f4c0b90ef4b6c98c77da54d /bin | |
parent | 9f1fd3290c2b38345c77eea814baf95c4002b19e (diff) | |
download | rss2html-4dea5f74319a743a88f77f4efe0226054a955a25.tar.gz rss2html-4dea5f74319a743a88f77f4efe0226054a955a25.tar.bz2 rss2html-4dea5f74319a743a88f77f4efe0226054a955a25.zip |
Separate lib and executable.
Add a separate executable, and move the rendering of the feeds into the feed class.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rss2html | 35 |
1 files changed, 35 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. + +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 |