aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2015-05-14 20:49:25 +0200
committerHarald Eilertsen <haraldei@anduin.net>2015-05-14 20:49:25 +0200
commitb962a14b19dff69f54818c3052f536c3aa94a38a (patch)
treebba924149e88c0c02027e4d73c30f7f00aa1c67a /bin
parent4dea5f74319a743a88f77f4efe0226054a955a25 (diff)
downloadrss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.tar.gz
rss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.tar.bz2
rss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.zip
Put classes into module.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rss2html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rss2html b/bin/rss2html
index b7be920..294fd1b 100755
--- a/bin/rss2html
+++ b/bin/rss2html
@@ -30,6 +30,6 @@ feeds = YAML.load(IO.read(config_file))
items = []
feeds.each do |t, f|
- feed = Feed.new(t, f)
+ feed = Rss2Html::Feed.new(t, f)
puts feed.render
end