Running different Rack adapters with merb
August 19th, 2008
A question came up recently and I had to think twice. It was how do I run a different app server for my merb application? Knowing merb relies on rack, I initially thought to look in the config/rack.rb. Then I started to grep through merb-core/ and finally came to:
Merb::Config.use do|config|
config[:adapter] = :mongrel
end

Recent Comments