Displaying 20 results from an estimated 300 matches similar to: "Problem installing the plugin..."
2007 Sep 05
5
Reloading ??
All,
So I got passed my initial hurdles with merb 0.4. And all seems to work
very nicely.
Thank you all for your help !
One thing though, why should I have to bounce the merb server when I
change
my controller or associated classes ? Am I missing something ?
I am having flash back to my java days where I now have to reflect on
what changed
and bounce the server accordingly...
2006 Aug 23
3
Auto-Reload...
Hi,
Not sure if this was posted before....
Is there a way to tell the backgroundrb server to reload workers a la
rails in dev mode ?
It seems that I have to cycle the server everytime I change my
workers...
Also has anyone cooked up a script for monitoring the background drb
process on a nix OS ?
ie rc init for server startup and making sure the process is happy
2007 Jan 12
5
Rails session parasite...
All,
I see this item on the merb-0.0.8 release notes
Added rails session parasite mode.
I am assuming merbs can piggy back off the rails current session.
How does one achieve that ?
Thanks
Fernand
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/merb-devel/attachments/20070112/0803f46e/attachment.html
2007 Sep 04
5
Xml templates...
I was looking in using an xml_builder template to do something like:
blee.xerb
xml.blees do
<% for blee in @blees %>
xml.blee = blee.name
<% end %>
end
It looks like the xml_builder template can''t expand the erb tag.
It this not the correct way to expand and xml template ?
Thanks !
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Jan 03
2
Using helpers...
All,
I am getting an undefined method exception while trying to use a helper
method
in a xerb file.
I am running version 0.0.8
module Merb
module FredHelper
def blee( args )
....
end
end
end
In the xerb template I have
xml.bobo blee( args )
At runtime I am getting undefined method ''blee''
I tryied
2006 Aug 04
1
SVN Problems (Newbie)
Hi,
I''m in the process of learning Rails, following Agile Web Developmetn
with Rails 2nd Edition.
I''m trying to link my project to the rails repositry using this:
svn propset svn:externals "rails
http://dev.rubyonrails.org/svn/rails/trunk" vendor
However I have this error message:
subversion/libsvn_wc/lock.c:630: (apr_err=155007)
svn: ''vendor''
2007 Jan 02
1
Caching...
Hi,
I am just starting playing with merb and was wondering if there is any
caching
strategy available. I was planning on using the action caching plugin but
I am
quiet sure what is the merb plan with dealing with plugins...
Any idea or suggestions ?
Regards,
Fernand
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Dec 23
1
Generating a merb app skeleton...
I have just started playing with merb. I think this framework has great
potential
so ATTA BOYS are in order !!
Perhaps I missed something in the readme file, but how do I generate a
default
app in merb.
I was looking for something like the cmd below to generate the app
hierarchy ??
> merb myapp
-Fernand
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Jan 03
1
Specifying load path...
All,
How can I specify a load path in merb ? I have some classes in a lib
directory that needs
to be in the load path. Not sure how to accomplish that with merb....
Thanks,
Fernand
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/merb-devel/attachments/20070103/2c960f36/attachment.html
2007 Sep 04
1
Couple of questions for Merb 0.4
All,
I have just updated to the latest release of merb 0.4 and I am
wondering how I can get my controller changes
to reload without bouncing the server ? I am running in dev mode
but my changes to my merb controller don''t
seem to get picked up on new requests.
Also say I have a controller that needs to render an alternate
xml format ie something like:
2007 Dec 19
3
Trapping custom exceptions in merb 0.5.0
Hi,
I have the following setup:
class Fred < Application
class InvalidKey < Merb::ControllerExceptions::Unauthorized; end
def blee
raise InvalidKey unless key
end
end
I have added a view exception template in
views/exceptions/invalid_key.html.erb
but I am not seeing the exception page being rendered ?? The request
seems to correctly
go to
2006 Nov 22
4
Error when starting bgrdb
Hi,
I get this error when starting bgdrb using "rake
backgroundrb:start" (on a Mac using bgdrb 0.2.0):
/Users/gl/Projects/xxxxx/xxxxx/vendor/plugins/backgroundrb/server/lib/
backgroundrb_server.rb:33:in `format_message'': undefined method
`strftime'' for "2006-11-22T12:34:18.524572 ":String (NoMethodError)
from /usr/lib/ruby/1.8/logger.rb:320:in
2006 Aug 23
5
Singleton-like Worker
Hello there,
I need a Worker Class to be Singleton-like, that means there must be at
maximum one Instance at a time. When a new Request is made to create another
worker of this type, it should return and wait for the other instance to be
destroyed.
what i need to do: i have a worker who needs to do sth with java and
openoffice, and it seems when i have more tha one worker simultaneously,
2006 Jul 25
1
bgdrb hangup
Hi,
i had a little problem a few minutes ago. somehow the backgroundrb process
got mad and consumed all the cpu power available, i think it got an endless
loop. i dont know why, no exceptions were thrown.
could this be an issue of bgdrb or ruby or rails (as i load the rails
environment)
--
Michael Siebert <info at siebert-wd.de>
www.stellar-legends.de - Weltraum-Browsergame im
2006 Jul 25
1
Production deployment?
Hi all,
BackgrounDrb was exactly what I needed for a project I''m working on at
work. Everyone''s really impressed, and now it''s time to put the
system into production.
My question is, how do I avoid having to manually run the startup and
shutdown scripts (or the rake tasks) for backgroundrb?
I tried putting a system "rake backgroundrb:start" in my
2006 Aug 01
2
making backgroundrb cron
Hello,
i need to have some jobs scheduled in the background and executed at
specific times. I wanted to make a worker who does that - and it works a
little bit - but i had an enlightment... why not make bgdrb itself play that
role? i mean, the MiddleMan has already everything needed! a timer thread,
currently used only for deleting old workers and the workers itself. since
im not familiar with
2007 Mar 04
2
BgDRb blocking in ActiveRecord
Hi Folks,
I''ve got a tiny little problem using MySQL-backed ActiveRecord in my
worker class. Sometimes it just blocks infinitely when I try to
access it. I don''t know whether it is in AR itself or in the SQL
driver. It just stops doing anything, logging nothing, no exceptions
are raised. I don''t know if it matters that I call the worker''s
methods via
2006 May 16
7
svn-1.3.1 errors on intel mac on checkout
I just installed svn-1.3.1 from .dmg on an intel mac. I am getting ...
subversion/libsvn_wc/log.c:338: (apr_err=155009)
svn: In directory ''sr''
subversion/libsvn_subr/io.c:565: (apr_err=2)
svn: Can''t copy ''sr/.svn/tmp/text-base/README.svn-base'' to
''sr/README.tmp'': No such file or directory
Any one getting this? TIA for any help.
2006 Sep 01
1
install backgroundrb
Hi
This may be a repeat question on the list, but I could not find an answer.
I cannot install backgroundrb via the usual svn method as the firewall does not permit it. Is there a place where I can download the latest version please?
Thank you
David
---------------------------------
Get your own web address for just $1.99/1st yr. We''ll help. Yahoo! Small Business.
2006 Sep 07
1
Monitor Script
I was thinking it would be nice to have an extra script to monitor the
process and restart it if it wasn''t running. Basically a watchdog
script that you can run as a cron job if you want.
I can put one together if someone hasn''t already?
Chris