-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels