Skip to content

Instantly share code, notes, and snippets.

@postazure
Created March 13, 2015 20:01
Show Gist options
  • Save postazure/0a9a6f3760900f8a629f to your computer and use it in GitHub Desktop.
Save postazure/0a9a6f3760900f8a629f to your computer and use it in GitHub Desktop.
test rake tasks blog example
# lib/tasks/restaurant.rake
require 'harvesters/yelp_harvester'
require 'harvesters/harvester_index'
namespace :restaurant do
desc "Pull yelp information from yelp api"
task get_yelp: :environment do
HarvesterIndex.yelp
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment