With Rails and the feedjira
gem, I am using an RSS feed to get news articles from a website like so:
Article.update_from_feed("http://feeds.feedburner.com/CoinDesk")
def self.update_from_feed(feed_url)
feed = Feedjira::Feed.fetch_and_parse(feed_url)
add_entries(feed.entries)
end
However, by default I get a relatively small number of news.
Is there an option I can pass such that I can increase the number of news I get from that website?