search for: new_job

Displaying 2 results from an estimated 2 matches for "new_job".

Did you mean: new_fb
2008 Jan 14
6
RSpec stories introduction
...at deal of prior knowledge. What I am looking for is a guided tour of what should go where and how each file should be called to implement stories. For the moment I have placed everything in ./stories, although I am nearly certain that this is not the way to go. I have created a file called "new_job.txt" in ./stories that contains this: ---> Story: open a new job As an authorized user I want to open a new job So that I can do work For a client Scenario: client is active Given client exists in database And client status is active When I add a new job Then a j...
2008 May 04
12
best approach to managing workers and getting status
Hi, I am using backgroundrb to process audio files from a rails controller. Currently a new worker gets created every time the method is called on the worker, using this code: @job_key = MiddleMan.new_worker(:worker => :audio_file_worker, :job_key => Time.now.to_i) MiddleMan.worker(:audio_file_worker, @job_key).make_new_audio_file(params[:release_id]) I need to create the new