ruby/rss

readme reading example

wildeng opened this issue · 1 comments

Ruby version: 3.0.0

In the README example on how to read an RSS feed the open method is used but it looks like it's trying to open a file

Errno::ENOENT (No such file or directory @ rb_sysopen - <rss-feed>)

Using instead:

URI.open(<rss-feed>)

gives the desired result

kou commented

Good catch!

I've fixed it.