I recently installed the Bundle gem (stable 2.3.x) with a integrated 3.0 release. The documentation for installing 2.3.x is weak, so I'm looking for help here.
I've done everything from this article on installing and configuring gem bundler (Installing gem bundler, defining Gemfile, adding preinitializer.rb, requiring bundler_gems/environment.rb):
http://litanyagainstfear.com/blog/2009/10/14/gem-bundler-is-the-future/
I can run script/server successfully, but when I try to access any page via my browser, I get a 500 Internal Server Error claiming many ActionView methods are undefined:
ActionView::TemplateError (undefined method `debug' ...
ActionView::TemplateError (undefined method `javascript_tag' ...
There has to be some gem dependency failing somewhere or something? Here's my Gemfile (rails 2.3.5):
clear_sources
bundle_path "vendor/bundler_gems"
source "http://gems.github.com"
source "http://gemcutter.org"
gem "rails", "2.3.5"
gem "formtastic"
gem "authlogic"
gem "will_paginate"
gem "cancan"
Any pointers?