John Wulff <[email protected]> wrote: > I'm experiencing this, can't seem to figure it out. Any help would be > appreciated, thanks! > > $ unicorn_rails -c current/config/unicorn.rb -E production > current/config/unicorn.rb:2:in `reload': uninitialized constant > Unicorn::Configurator::YAML (NameError)
Hi John, Unicorn itself doesn't use YAML anywhere, so you're probably just forgetting to load it somewhere in your config file: require 'yaml' Some servers (Mongrel, Thin) use YAML config files, so they would've already required 'yaml' for you. -- Eric Wong _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
