Method: Threatinator::FeedRegistry#each

Defined in:
lib/threatinator/feed_registry.rb

#eachObject



20
21
22
23
24
25
# File 'lib/threatinator/feed_registry.rb', line 20

def each
  return enum_for(:each) unless block_given?
  super do |key, feed|
    yield(feed)
  end
end