search for: charlesmbowman

Displaying 10 results from an estimated 10 matches for "charlesmbowman".

2006 Aug 16
6
error with edge rails
I''ve started an app with rails 1.1.6 then ran freeze_edge. My app will not run with rails in the vendor folder. Have I forgot to do something? I"ve been without the internet for the last two months. Has something changed?
2006 Nov 04
2
adding a method to an ActiveRecord Object
I''ve already pulled my object from the database. Now I want to add a method. What I''m doing is adding the username to the activerecord object so I''ll have the name and user_id. How can I do this. The code below fails in the view. It appears it''s overwriting the rest of my object def self.find_with_author(id) @article = Article.find(id)
2007 Jul 09
2
limiting processor usage
I have a very intensive background process that keeps taking up loads of the cpu. If I have 2 of these going at once, I can''t even ssh to the box much less get a page to load. Is there something I can do to limit this. I dont mind if the process takes longer to run, I just dont want to freeze my box every time it runs. Thanks for any advice! Charlie -------------- next part
2010 Jul 23
1
Check out my shelves
Hi rspec, Check out the books I added on Goodreads. http://www.goodreads.com/friend/i?n=rspec users&e=rspec-users at rubyforge.org&i=LTM2MDMwNTExMjM6MzY1 - Varchar (charlesmbowman at gmail.com) Goodreads is a community for book lovers. It''s a great way to get book recommendations from your friends and others. You can keep a list of books to read, join book clubs, and even take the never-ending book trivia quiz. _____________________________ To opt-out of future in...
2006 Aug 07
8
Rails Recipes question - authenticating users
Didn''t think I''d be back so quick with another question but here goes: In this recipe for the signin or login (as I call it) there are these two lines if the user authenticates correctly: session[:user] = user.id redirect_to :action => session[:intended_action], :controller => session[:intended_controller] So I''m not seeing anything in the way of an explanation
2006 Aug 16
44
Goodbye for now, RoR
I started a php-based website a few months ago with a buddy of mine on netfirms.com. I was perusing their knowledge base and I came upon a quick-start for something called Ruby on Rails. Since then I have immersed myself in RoR. I''ve done the tutorials, I''ve purchased the books. But, I could never get even a sample RoR app to work on netfirms. 500 server errors.
2007 Jun 11
0
render_to_string from within the worker?
Is it possible to call render_to_string from with in a brb worker? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20070611/21c1821a/attachment.html
2007 Jun 19
0
recycled objects and gc problem
I''ve been digging around all morning through google trying to understand the problem of recycled objects. I''m only getting the error sometimes, so its very had to track down. I dont think I''m using any variables in my worker that come from the app so I''m not sure what is being gc''d that is causing the errors. You can see that the real work
2007 Jun 21
0
config file questions
example: :host: 192.168.1.101 :protocol: druby :worker_dir: lib/workers :rails_env: production :pool_size: 15 :load_rails: true :timer_sleep: 60 :acl: :deny: all :allow: localhost 192.168.1.* :order: deny allow I have this config file on 2 app servers running rails. The 2 servers are running behind a load balancer. I''m starting the backgroundrb server on the one server with the
2007 Jun 04
2
backgroundrb scheduler
I''ve been having a terrible time with the backgroundrb scheduler. The issues I''m having is that the scheduled actions aren''t ran at all and if they do, the process stays around forever. I''m using the backgroundrb as a nightly cron to run some accounting operations. questions: 1. How can I have the process destroyed after the worker completes? 2. Any idea on