6
votes
3answers
542 views
How to do a rolling restart of a cluster of mongrels
Anybody know a nice way to restart a mongrel cluster via capistrano in a "rolling" style, eg, one mongrel at a time. Would be great to have a bit of wait time in there as well for each, to let the …
1
vote
3answers
812 views
Rails - setting multiple layouts for a multipart email with mailer templates
Hi there,
So Rails 2.2 added mailer layouts, which is great, except that I can't figure out how to make them work when I'm sending a multipart email..it's wrapping my mail content with the …
0
votes
How do I view the HTTP response to an ActiveResource request?
Or my method of getting into things when I don't know the exact internals is literally just to throw in a "debugger" statement, start up the server using "script/server --debugger" and then step th …
1
vote
How to interpret the memory usage figures?
by my reading of this, you have used almost all your memory, have 6 M free, and are going into about 10% of your swap. A more useful tools is to use top or perhaps ps to see how much each of your i …
3
votes
Sharing code in respond_to blocks
If I'm reading this right, it looks like find_current_membership is your before_filter method, is that right? eg:
class SomeController < ApplicationCont …
3
votes
How do I test Rails block helpers with rSpec
To add just a bit to what James said, I think something like this should work just fine:
describe SomeHelper do
it 'should do something' do
helper.some_block_helper { the_bloc …
2
votes
What is the best way to run asynchronous jobs in a Rails application?
I'll add DJ (Delayed Job) to the list - http://blog.leetsoft.com/2008/2/17/delayed-job-dj
The github guys rece …
11
votes
Paypal Website Payments Standard with a Ruby/Rails application
I would also check out ActiveMerchant. Here's a bit more info …
2
votes
Where is the best place to add methods to the Integer class in Rails?
Why not just:
class Feet
def self.in_miles(feet)
feet/5280
end
end
usage:
Feet.in_miles 2313
Or maybe look at it the othe …
-1
votes
How do you run a “do” block in a Rails Model while still listing a :dependent?
This should work just fine AFAIK:
has_many :posts, :dependent => :destroy do
def recent
find(:all, :order => 'created_at desc', :limit => 12)
end
end
…
1
vote
How do I redirect multiple actions to a single action while maintaining DRY?
It's my understanding that after filters are run after the response is sent to the client, meaning after any render or redirects occur, which is why you're seeing that error. They are inte …
