→ bundle -v
Bundler version 0.9.25
→ ruby -v
ruby 1.8.7 (2010-01-10 patchlevel 249) [i686-darwin10.2.0]
→ rvm -v
rvm 0.1.37 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]
passenger version: 2.2.13
Gemfile: source 'http://rubygems.org'
gem 'rails', '2.3.8'
gem 'actionpack', :require => 'action_pack'
gem 'devise', '1.0.7'
gem 'devise_invitable', :git => "git://github.com/emk/devise_invitable.git"
gem 'haml', '3.0.7'
gem 'formtastic', :git => "git://github.com/justinfrench/formtastic.git", :branch => 'rails3'
gem 'mongo_ext', '~> 0.19.3'
gem 'mongo_mapper', '~> 0.7.6'
gem 'liquid'
gem 'will_paginate', '~> 2.3.14'
gem 'comma'
gem 'fastercsv'
gem 'ssl_requirement'
gem 'erubis'
gem 'state_machine'
group :development do
gem 'ffaker'
gem 'capistrano'
end
group :test do
gem 'rspec', '~> 1.3.0'
gem 'rspec-rails', '~> 1.3.2'
gem 'factory_girl'
gem 'remarkable_rails'
gem 'webrat'
gem 'launchy'
gem 'email_spec'
gem 'spork'
gem 'rspactor'
gem 'ffaker'
gem 'bson_ext'
end
Command to generate the exception:
bundle install
and then bundle lock
Then my app doesn't start properly and I got this error from Passenger:
Could not load the bundler gem. Install it with ``gem install bundler``.
If I run bundle unlock
, my app is working again.