Skip to content

Instantly share code, notes, and snippets.

@bufordtaylor
Created November 16, 2015 17:07
Show Gist options
  • Save bufordtaylor/c6e94b24ba1b9968f095 to your computer and use it in GitHub Desktop.
Save bufordtaylor/c6e94b24ba1b9968f095 to your computer and use it in GitHub Desktop.
# Gemfile
gem 'clockwork'
# config/clock.rb
require 'clockwork'
require './config/boot'
require './config/environment'
module Clockwork
handler do |job|
puts "Running #{job}"
end
every(3.minutes, 'BrandFavoriteTweets.debug', tz: 'UTC') { BrandFavoriteTweets.debug }
end
# lib/brand_favorite_tweets.rb
module BrandFavoriteTweets
def self.debug
puts "yepp"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment