We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I've aggregating two feeds and sorting them by date. Here's the code:
feeds = [ 'http://blog.woralelandia.com/tag/mi-musica/feed/', 'http://mexicoindie.net/feed/' ] stories = [] feeds.each do |f| feed = FeedNormalizer::FeedNormalizer.parse f stories.push( *feed.entries ) end stories.sort_by! { |k| k[ :date_published ] } SystemStackError: stack level too deep from /home/renich/.gem/ruby/2.2.0/gems/feed-normalizer-1.5.2/lib/structures.rb:14:in `rescue in method_missing'
I am getting 20 stories so it shouldn't be much. Could you help me out with this and maybe add a suggestion at the readme?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I've aggregating two feeds and sorting them by date. Here's the code:
I am getting 20 stories so it shouldn't be much. Could you help me out with this and maybe add a suggestion at the readme?
The text was updated successfully, but these errors were encountered: