Tagged Questions
70
votes
10answers
22k views
A cron job for rails: best practices?
What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
2
votes
2answers
322 views
Cron Job Errors help - Rails Runner errors
* * * * * /bin/bash -l -c 'cd /Users/boris/projects/MyApp/ && rails runner "Resque.enqueue(Place)"'
Basically I need to do the following:
Load Ruby with RVM
Navigate to MyApp Dir
Run the ...
0
votes
1answer
35 views
Trying to Rails.cache.delete_matched from the runner
On redmine 1.2/rails 2.3.11 I'm rendering a repository markdown file as html (as redmine_markdown_extra_viewer does), and now I'am trying to cache the result, which should be updated on each commit.
...
0
votes
0answers
64 views
Rails Actionmailer - Find original header in bounceback
I've set up a forwarder through cpanel called 'eblast-bounceback@mydomain.com' which pipes to a runner (i.e., look up any tutorial on receiving emails through rails). This part works just fine - I ...