Created
June 25, 2010 17:53
-
-
Save mileszs/453194 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def application_packages | |
| if deploy_stage == 'production' | |
| # set up the cron task to reindex | |
| cron 'rake sunspot:reindex', :ensure => :absent | |
| cron 'rake cron', | |
| :command => "/usr/bin/rake -f #{configuration[:deploy_to]}/current/Rakefile cron RAILS_ENV=#{ENV['RAILS_ENV']}", | |
| :hour => 5, | |
| :minute => 0 | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment