Skip to content

Instantly share code, notes, and snippets.

@rymai
Created June 2, 2010 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rymai/422073 to your computer and use it in GitHub Desktop.
Save rymai/422073 to your computer and use it in GitHub Desktop.
→ 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 (wayneeseguin@gmail.com) [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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment