Tagged Questions
Whenever is a Ruby gem that provides a clear syntax for writing and deploying cron jobs.
6
votes
2answers
425 views
Setting path for whenever in cron so it can find ruby
My ruby is in /usr/local/bin. whenever can't find it, and setting PATH at the top of my cron file doesn't work either, I think because whenever is running the command inside of a new bash instance.
# ...
5
votes
4answers
2k views
Is Rails's “delayed_job” for cron task really?
delayed_job is at http://github.com/collectiveidea/delayed_job
Can delayed_job have the ability to do cron task? Such as running a script every night at 1am. Or run a script every 1 hour.
If not, ...
4
votes
3answers
363 views
How to detect Rails environment inside whenever
This question will probably only make sense if you know about the whenever gem for creating cron jobs.
For my app, I want to use whenever in all the environments, including testing and development.
...
4
votes
2answers
514 views
Issue using whenever gem
I am trying to use whenever gem in my application but I am not able to run rake command in schedule.rb.
Error which is throwing up is
/bin/bash: rake: command not found
I am also using bundler so ...
3
votes
1answer
460 views
Sudo doesn't have access to shell commands when deploying with Capistrano
I'm deploying my Rails 3 app using capistrano.
I have on user (deploy) who's been added to sudoers. This is the user I'm deploying with.
When I log on to the server as deploy I have access to all of ...
3
votes
6answers
6k views
Rails cron with whenever, setting the environment
This question will probably only make sense if you know about the whenever gem for creating cron jobs. I have a task in my schedule.rb like
every 1.day, :at => '4am' do
command "cd ...
2
votes
1answer
339 views
whenever gem and scheduling a job every n min starting at an offset
For staggering purposes I am trying to schedule jobs an a 2 minute offset that run every 5 mins. That is I want 1 job to run 1,6,11,16.. and the other one to run at 2,7,12,17...
I couldn't find an ...
2
votes
3answers
725 views
whenever PATH in crontab file for rails 3 ubuntu
I am using whenever gem with rails 3. On my production server (ubuntu) , the runner task does not run. I tried setting the :set job_template to get -l -i as mentioned in this github ticket. However ...
2
votes
2answers
177 views
whenever gem have cronjob on only one machine?
We have a large deployment of around a dozen servers. We'd like to use the Whenever gem but I can't figure out a way to say which machine the cron jobs should go on! We only want these jobs to run on ...
2
votes
1answer
944 views
Whenever gem won't update crontab tasks
I have been using the whenever gem on my 2+ year old slice at Slicehost. I can't however do the same on my new slice.
Main differences is that I'm now running RVM on both my MBP and the slice. I am ...
2
votes
2answers
264 views
Javan Whenever Gem is sending me the output as local mail
Javan's Whenever gem for Ruby on Rails is fantastic, however, I'm having one issue with it, namely that it sends whatever output I've logged to /var/mail/user, which I don't want to receive. Does ...
1
vote
0answers
32 views
Rails 3 / whenever cron not firing
I am using whenever to fire a rake task every 5 minutes for my app.
schedule.rb:
every 5.minutes do
rake "audit",
:environment => 'development'
end
"whenever" in console:
...
1
vote
1answer
33 views
How to specify “except” in whenever (ruby on rails)
I have a task which needs to run twice every day of the week except on Sunday, when it has to run only once. I am aware that I can specify the raw cron syntax to achieve this, but wanted to know if ...
1
vote
1answer
62 views
Rails whenever cron
Before you read this, understand that I am completely new to the idea of a cron so this is difficult for me. I bundle installed the gem whenever. then i ran
wheneverize .
no errors. the schedule.rb ...
1
vote
2answers
52 views
Make Background Job generated files available for Download
I have an action in my controller that generates reports of site usage based on date range selected (Start and End Date) with the condition that the start and end date has to be within the current ...
1
vote
1answer
67 views
How to stop cron jobs created by “whenever” gem
I'm using the "whenever" gem and got it working by doing:
whenever --set environment=production --update-crontab theCronJob
The interval I'm using is 2 minutes since I'm still trying to figure it ...
1
vote
2answers
283 views
Sending mails automatically through action mailer Rails 3.1
I have to send weekly emails to all the user about the latest things happening. I am using ActionMailer to accomplish other mailing task however I have no clue how to automate the weekly emails.
...
1
vote
1answer
326 views
Rails 3 - Whenever gem error: /usr/bin/env: ruby: No such file or directory
When using the 'whenever gem', I get an error in the log:
/usr/bin/env: ruby: No such file or directory
It works when I run the job manually. I've installed everything with RVM.
I've used the ...
1
vote
1answer
49 views
How can I create identical cron jobs for staging and production with the whenever gem?
I have one job in schedule.rb:
set :output, File.expand_path('../log/whenever.log', __FILE__)
set :job_template, "bash -l -c 'source ~/.bashrc ; :job'"
every 1.day, :at => '12:01 am' do
runner ...
1
vote
1answer
871 views
Whenever ruby on rails
In my schedule:
every 10.minutes do
runner "Model.method"
end
Whenever created this in my crontabs
0,10,20,30,40,50 * * * * /bin/bash -l -c 'cd /home/projects/Monitoring && script/rails ...
1
vote
2answers
535 views
Rails cron with whenever
I don't understand why "whenever" does not work
Schedule.rb
every 2.minutes do
runner "Ping.check_pings"
end
Ping.rb
class Ping < ActiveRecord::Base
attr_accessible :LAN, :WAN, :info, ...
1
vote
1answer
432 views
Why is my cron Job not running on OS X (configured by whenever gem)?
I have set up a cron job, using the great whenever gem.
every 1.minute do
runner "PeerReview.start_feedbacks"
end
I set up the cron job with:
whenever --set environment=development ...
1
vote
0answers
188 views
Running rake from cron
I have started using the Whenever gem to schedule cron jobs with rails.
But sadly rake will not run, I traced the problem to the environment not being loaded.
The whenever gem generates scripts ...
1
vote
1answer
345 views
Problem while writing the cron job using whenever ruby gem
I am trying to setup a cron job using the whenever gem. I have written when the cron job should be run in the schedule.rb and also updated the crontab as mentioned in the railscasts episode. But the ...
1
vote
1answer
464 views
Help with the “Whenever” gem in Ruby for cron tasks
I have not used cron before, so I can't be sure that I did this right. The tasks I want to be automated don't seem to be running. I did these steps in the terminal:
sudo gem install whenever
change ...
1
vote
2answers
201 views
Where to put Ruby scripts for script/runner on a Rails project?
I have seen examples where it is put in the lib folder, and another example in the app folder. Is there standard place where it should be put for Rails 2.3.8 and Rails 3 convention?
1
vote
1answer
661 views
config file in schedule.rb with Rails Whenever gem?
I have a file called config.yml in my /config folder of my rails application.
I also have an initializer: config/initializers/load_config.rb with the following code:
APP_CONFIG = ...
0
votes
1answer
52 views
whenever --update-crontab app throwing error
I have defined a background job using whenever gem for my rails 2.2 app. First i initialized the config/schedule.rb by the command wheneverize in the app directory and then defined a simple backgroung ...
0
votes
1answer
52 views
Clearing crontab changed format of terminal cron messaging
I'm using the latest version of the whenever gem with Rails 3.1.1 for cron tasks. After I used the whenever command on the terminal
whenever -c
to clear the crontab, whenever I type in
crontab ...
0
votes
0answers
25 views
Prevent whenenver gem from running --clear-crontab before gems installed
I am using capistrano, and the whenever gem, on a fresh deploy to a server without the whenever gem installed, capistrano attempts to run
whenever --clear-crontab
BEFORE the rake gems:install ...
0
votes
1answer
29 views
How do i access constant defined in Rails 3 application in “whenever” gem of schedule.rb file
i have few constants declared in application_controller.rb file.
Is there any way to access them in schedule.rb file of whenever gem?
Regards,
Sudhir C.N.
0
votes
1answer
152 views
whenever gem schedule.rb file: doesn't recongize RAILS_ROOT variable
In schedule.rb file, the statement:
require "#{RAILS_ROOT}/config/environment.rb"
every "10 10 2 * * *" do
command "mysqldump -u #{@db_username} -p#{@db_password} --single-transaction ...
0
votes
2answers
91 views
Rails hourly cron jobs using Whenever fails to run hourly
On Redhat, using Whenever. My cron jobs fail to run hourly. I need help as to why.
Schedule.rb
every 1.hours do
rake "deathburrito:all", :environment => "development"
rake "bamboo:all", ...
0
votes
2answers
87 views
Rails 3: Rake task on production server slows the site down to a crawl
I am using the whenever gem to call rake-based cron tasks, however... when the tasks are run, the whole site (Passenger on Nginx) stops responding for the duration of the task.
Is there anyway to ...
0
votes
1answer
74 views
delayed_job vs. cron
I have a system where users come in to go through an application process that has multiple parts - sometimes users will save their progress and come back later.
I want to send users an e-mail if they ...
0
votes
1answer
197 views
Cron job not working in Whenever gem
I have an application that contains a bunch of tasks, and every day I want to run a cron job that creates a DayTask for each Task in the database. A Task has_many DayTasks and these daytasks are what ...
0
votes
1answer
54 views
Whenever ruby scheduler doesn't work, what am I missing?
Cannot make it works ...
In my config/schedule.rb I have :
set :output, '../log/development.log'
every 5.minutes do
runner "UserWatchedRepo.update"
end
Note the log setted, but nothing happen. ...
0
votes
2answers
118 views
ruby whenever gem log location in Ubuntu?
I'm running the whenever (cron) gem on Ubuntu 11 and can't seem to find where the log is or where to set the log file. I think something is amiss and I can't seem to be able to debug it without the ...
0
votes
3answers
222 views
Running whenever cron in Windows
Total newbie at cronjobs and that kinda stuff, never done it before, so now I tried to get my hands dirty using whenever as a plugin, after seeing it on RailsCasts.
So I am trying to run a cron job ...
0
votes
2answers
216 views
Whenever cron job is not working in rails 3
This is the code in my schedule file. I am using 1 min just to test whether its working or not.
every 1.minutes do
runner "User.update_all('daily_sms_count' = 0 )"
end
from terminal i setup
...
0
votes
1answer
181 views
How to make 'whenever' gem work on Windows?
I wan to run "simple" cron using whenever on Windows XP. So I installed whenever gem install whenever and then ran my cron.rb
require 'rubygems'
require 'whenever'
every 1.days, :at => '5:30am' ...
0
votes
2answers
111 views
Rails whenever gem: each month on the 20th
I searched all over the internet for this, and the documentation isn't really talking about monthly jobs in specific. So I was hoping that someone here could tell me how to do this.
I've installed ...
0
votes
2answers
435 views
Rails: whenever + delayed_job to optimize rake tasks?
I use whenever to call rake tasks throughout the day, but each task launches a new Rails environment. How can I run tasks throughout the day without relaunching Rails for each job?
Here's what I came ...
0
votes
1answer
282 views
How whenever gem use in rails for cronjob processing?
How should we use whenever gem in rails 3 for cronjob processing? i have one rake task which i need to run after every 5 min ,how can i do this?
0
votes
0answers
142 views
How to create crontabs for controller method?
resource "items"
controller "items" -> method "check_item"
view "items" -> link_to check_item
I need to create an input form for user to enter the period of time "N [seconds or minutes ...
0
votes
1answer
231 views
scheduling sequential tasks with whenever gem
i'm using whenever to schedule tasks for a rails application.
I have a task like:
every 24.hours do
command "do_this"
rake "do_that"
end
my point is, when i write it to my crontab, with ...
0
votes
1answer
330 views
Ruby/Rails - Whenever gem - Loop cron tasks
I would like to control my cron jobs through my administration page.
Basically I have my cronjobs in my database, and I would like to create my crontab "on the fly".
Here's an example:
require ...
0
votes
2answers
457 views
Rails - Whenever gem - Dynamic values
Lets say I have a cronjob like this:
every 1.day, :at => '4:30 am' do
runner "MyModel.task_to_run_at_four_thirty_in_the_morning"
end
Although, I would like to make '1.day' more dynamic, ...
0
votes
3answers
644 views
Wrong ruby path used in rake task executed as cron through whenever
I am trying to use the whenever gem to execute a couple of rake tasks. It appears to set up the cron tasks correctly - info here is from the mail output that is produced. Here's an example of the ...
0
votes
1answer
683 views
Cron not working in Whenever gem
I'm trying to use a gem whenever on my rails application, it seems like its not working because I created a task in my model and defined a method that just prints out the time.
whenever I try to run ...