Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
320 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 ...
2
votes
2answers
845 views

Rails 3 runner not detecting JSON gem?

I'm trying to create Ruby script to run with my Rails 3 environment. However, whenever I run this rubyscript with Rails Runner, I get this error: require 'rubygems' require 'json' @payload = { ...
2
votes
8answers
1k views

Best methodology for developing c# long running processor apps

I have several different c# worker applications that run various continuous tasks: sending emails from queue, importing new orders from website database to orders database, making database backups and ...
1
vote
3answers
975 views

What are some good .net job scheduler and runner solutions?

I am looking for a solution, or a set of solutions with the following components: Job Scheduler - run a specific job on a specific schedule. I have seen Quartz.NET and it seems like a good ...
0
votes
1answer
11 views

Bundle install keeps installing to ./runner

Not sure what's going on here, but in my Rails 3 application, I type bundle install and at the end if says Your bundle is complete! It was installed into ./runner. Weird because I have no idea where ...
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
2answers
78 views

Turn some print off in python unittest

Im using unittest and it prints ".", "E" or "F" for "ok", "error" and "fail" after each test it does. How do I switch it off ? Im using Python 2.7 and these print come from the runner class which is ...
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 ...
0
votes
0answers
71 views

concurrent ant build is not possible

how to launch a new jvm programitically.. i need this because m using antrunner class of eclipse for executing my ant script.but in threaded environment it gives me exception that concurrent ant build ...
0
votes
1answer
91 views

Trouble running mbUnit 2 tests in SubSonic 2.1

I'm still using Subsonic 2 for a few of my projects. Wanting to hack it a little. I've got the latest pull from the GIT repo, I'm using VS2008 Pro. Looking in the SubSonic.Test project, the mbUnit ...
0
votes
3answers
316 views

How to make a Jlabel addText from a Class method repeatedly?

I tried swingwoker , but it will update one time only ... http://piggyman007.blogspot.com/2010/04/java-swingworker-multithread.html package smartOfficeJava; import java.awt.event.KeyEvent; import ...