search for: backgroundrb_task

Displaying 4 results from an estimated 4 matches for "backgroundrb_task".

Did you mean: backgroundrb_tasks
2007 Sep 30
0
Patch: background_tasks.rake
Hi, * Background I develop rails app with backgrounDRb where one of its parent folders has a space in its name. * Problem rake backgroundrb:start and rake backgroundrb:stop do not work * Analysis This is because the line for start and stop in backgroundrb_tasks.rake do not quote #{scripts_src} * Patch Quote the #{scripts_src} in the two lines so they become `"#{scripts_src}"/start -d` and `"#{scripts_src}"/stop` A patch file and the updated backgroundrb_tasks.rake are included for your reference. -------------- next part -------...
2007 May 17
1
exec format error
Hi I have been using backgroundrb version 0.1 for a while. Unfortunately, I have to develop on windows :( It has worked fine for a while. However, this morning I started up and old app that worked fine and get this error. exec format error from running --trace I see that the error comes from backgroundrb_tasks.rb line 59 which reads: 59 `#{scripts_src}/start -d` Here is the context. desc ''Start backgroundrb server (default values)'' task :start do scripts_src = "#{RAILS_ROOT}/script/backgroundrb" if File.exists?(scripts_src) `#{scripts_src}/start -d` el...
2009 Nov 29
0
Problems with starting the backgroundrb server - Permission denied
Hi, I am using eclipse and instant rails. I am trying to start the backgroundrb server by the folowing script ruby script/backgroundrb start On doing a stack trace, it shows me an error in backgroundrb_tasks.rb on the line if File.exists?(scripts_src) `#{scripts_src}/start -d` Can anyone tell me what could be the possible reason? I tried removing -d, but no use. Thanks, Harini -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/backg...
2008 Jan 22
11
Unable to load Models which reference plugins?
I''m using a plugin which adds a method to ActiveRecord::Base http://similetimelinerailshelper.googlecode.com/svn/trunk/simile_timeline/ This adds an "acts_as" type declaration to the Models, via the file in vendor/plugins/simile_timeline/lib/simile_timeline.rb Rails is working with these declarations, and they are being used successfully in ''regular