search for: gnufi

Displaying 20 results from an estimated 138 matches for "gnufi".

Did you mean: gnuefi
2007 Nov 09
3
Why the switch to SMTP
Can anyone explain why BackgrounDRb is switching form DRb to SMTP protocol? That seems like a lot of overhead to add to the messaging back and forth? Orion
2007 Dec 14
4
Error when loading backgroundrb
I''m getting the following error (when doing script/backgroundrb start) on my local machine, which is running os x 10.4.11. However, it works just fine on my linux server. RAILS_ROOT/vendor/plugins/backgroundrb/lib/../framework/nbio.rb:64:in `dump_object'': undefined method `write_nonblock'' for #<UNIXSocket: 0x135b5f4> (NoMethodError) I just grabbed the
2008 May 20
7
Problems sending large results with backgroundrb
I''m working on an application that does extensive database searching. These searches can take a long time, so we have been working on moving the searches to a backgroundrb worker task so we can provide a sexy AJAX progress bar, and populate the search results as they are available. All of this seems to work fine until the size of the search results gets sufficiently large, when we start
2008 Jan 16
6
Backgroundrb 1.0.1: uninitialized constant Packet::ClassHelpers (NameError)
Hi, just updated backgroundrb to release 1.0.1 and am getting this error when trying to start backgroundrb. vendor/plugins/backgroundrb/framework/core.rb:18: uninitialized constant Packet::ClassHelpers (NameError) Just updated from r298 where everything was working fine. If I comment out the offending line then backgroundrb starts but I can''t connect to it from my app. Anyone have any
2013 Jul 01
0
Invoker - 0.1.1 release, A gem for managing processes in development environment
...nvoker is a gem for managing processes in development environment. You can install the gem via: ~> gem install invoker And you can clone the code from: http://github.com/code-mancers/invoker After Installing gem, you need to create a configuration file: [rails] directory = /home/gnufied/god_particle command = zsh -c ''bundle exec rails s -p 5000'' [dj] directory = /home/gnufied/god_particle command = zsh -c ''bundle exec ruby script/delayed_job'' [events] directory = /home/gnufied/god_particle command = zsh -c '...
2008 Jan 02
3
disabling backgroundrb_debug.log
is there an easy way to disable logging to backgroundrb_debug.log? Regards - reynard -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20080102/195dee18/attachment.html
2007 Nov 02
10
pre-release version of backgroundrb available now from svn
...nd needs more polish. But still, i hope it will be more stable than previous versions of backgroundrb. Please report all the bugs here. Thanks -- Let them talk of their oriental summer climes of everlasting conservatories; give me the privilege of making my own summer with my own coals. http://gnufied.org
2007 Dec 17
4
wday not honored in cron trigger
Hey guys, I was playing with the cron trigger, and I noticed that wday is not honored. Looking at the code confirms this. Has anyone else seen this? Thanks Adam -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20071217/44d3a8a6/attachment.html
2007 Dec 17
11
BackgrounDRb release 1.0 available now
...ues. ** Andy for patches and initial testing. ** Paul for patching up README. ** Other initial users. ** Matz, Francis for general inspiration. -- Let them talk of their oriental summer climes of everlasting conservatories; give me the privilege of making my own summer with my own coals. http://gnufied.org
2007 Dec 17
7
Get "some read error" on calls to worker
I''m running the latest from svn (rev 285). I''ve been having a problem launching a process repeatedly. What happens is that I get a debug message "some read error" and then the worker refuses to run again. I''ve stripped my worker down to just doing a puts and it still happens. Like the other threads I want to launch my workers as needed, however I get the
2008 Apr 09
3
reload_on_schedule
Hello, Does reload_on_schedule force the worker to be reloaded even if it is already running? Or does it just load the worker if its not running when the schedule fires? I want to load the worker at the scheduled time if its not running, but I don''t want to reload the worker if its already running. Make sense? Thanks, Scott
2008 May 21
2
Schedule write errors?
My BackgrounDRb server intermittently bails out with the following exception in the middle of a long running task running on a Worker sub classed from BackgrounDRb::MetaWorker (the point at which it raises this exception is different each time it runs) /opt/local/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_core.rb:145:in `schedule_write'': You have a nil object when you
2007 Dec 13
4
Some fixes and updates
...has been changed, so remove backgroundrb script from your backgroundrb directory and do a rake backgroundrb:setup and you should be good to go. -- Let them talk of their oriental summer climes of everlasting conservatories; give me the privilege of making my own summer with my own coals. http://gnufied.org
2007 Nov 14
7
BackgrounDRb version 1.0RC1 available now
...background process that is divorced from http request/response cycle. This new release of BackgrounDRb is also modular and can be used without Rails. So any Ruby program or framework can use it. Copyright (c) 2006 Ezra Zygmuntowicz,skaar[at]waste[dot]org, Copyright (c) 2007 Hemant Kumar (mail[at]gnufied[dot]org) == Usage === Installation Getting the code: svn co http://svn.devjavu.com/backgroundrb/branches/version10/ Installation with svn externals: svn propedit svn:externals vendor/plugins [add the following line:] backgroundrb http://svn.devjavu.com/backgroundrb/branches/version10/...
2007 Oct 31
4
How you want BackgrounDrb to behave
...back mechanism, rather than threads. PS: trunk doesn''t yet reflect the changes i said. I will be checking in code soon. stay tuned. -- Let them talk of their oriental summer climes of everlasting conservatories; give me the privilege of making my own summer with my own coals. http://gnufied.org
2006 Dec 15
5
Testing event driven Socket classes
...lient connects # so this place for initializing stuff def post_init @chunked_data = "" @client_status = true end # method gets called when a client disconnects def unbind @client_status = false end def hello_world p "Hello World" end end -- gnufied ----------- There was only one Road; that it was like a great river: its springs were at every doorstep, and every path was its tributary.
2008 May 28
2
version yml file
Hi, I am trying to get the scheduling to work with my RoR application. How do I determine what version of backgroundrb I have configured? When I try to invoke??? rake backgroundrb:setup? , it fails. Thanks for the help. Linda
2008 Jun 27
2
Tests failing when using ''reload_on_schedule true''
Hi All, When I add the line ''reload_on_schedule true'' to my worker, my tests will no longer run with the following exception: Starting ferret DRb server.../Users/revelation/projects/revelation-project/config/../lib/workers/alert_worker.rb:3: undefined method `reload_on_schedule'' for AlertWorker:Class (NoMethodError) class AlertWorker < BackgrounDRb::MetaWorker
2007 Dec 23
2
Minor warnings since 296
Since moving to r296, I get warnings (" warning: already initialized constant...") for many of my class constants. This did not happen before, and I do not get the same warnings when loading my application normally. They are only warnings, so everything still runs, but I thought I would provide the FYI. -- Dave Dupre -------------- next part -------------- An HTML attachment was
2010 Aug 29
0
Troll - A Rails plugin for making webservice mocking easier
...'article_1.xml''), :status => 201}) More can be found in test directory of plugin and README. Gotchas: 1. Works only with Test/Unit currently. Patches welcome for RSpec support. 2. Works with Rails 2.3.x only currently, work is underway for Rails3 support. Code: http://github.com/gnufied/troll -- Let them talk of their oriental summer climes of everlasting conservatories; give me the privilege of making my own summer with my own coals. http://gnufied.org -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To p...