Skip to content

Instantly share code, notes, and snippets.

@TeTiRoss
Created January 17, 2019 08:00
Show Gist options
  • Save TeTiRoss/d82407daaa86d501779966b7254de91a to your computer and use it in GitHub Desktop.
Save TeTiRoss/d82407daaa86d501779966b7254de91a to your computer and use it in GitHub Desktop.
whenever respecting app time zone
# config/schedule.rb
require_relative './environment'
def timezoned time
Time.zone.parse(time).utc
end
every :monday, at: timezoned('12am') do
rake 'some:task'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment