Skip to content

Instantly share code, notes, and snippets.

@postazure
Created March 13, 2015 20:29
Show Gist options
  • Save postazure/6e0530bc6c695d467b68 to your computer and use it in GitHub Desktop.
Save postazure/6e0530bc6c695d467b68 to your computer and use it in GitHub Desktop.
# lib/harvesters/harvester_index.rb
class HarvesterIndex
def self.yelp
restaurants = Restaurant.where.not(yelp_url: nil)
restaurants.each do |restaurant|
yelp_harvester = YelpHarvester.new(restaurant)
yelp_harvester.populate_data
yelp_harvester.populate_tags
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment