diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-05-14 20:49:25 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-05-14 20:49:25 +0200 |
commit | b962a14b19dff69f54818c3052f536c3aa94a38a (patch) | |
tree | bba924149e88c0c02027e4d73c30f7f00aa1c67a /bin | |
parent | 4dea5f74319a743a88f77f4efe0226054a955a25 (diff) | |
download | rss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.tar.gz rss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.tar.bz2 rss2html-b962a14b19dff69f54818c3052f536c3aa94a38a.zip |
Put classes into module.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rss2html | 2 |
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 |