Skip to content

Instantly share code, notes, and snippets.

@bmadigan
Created March 29, 2012 22:23
Show Gist options
  • Save bmadigan/2244347 to your computer and use it in GitHub Desktop.
Save bmadigan/2244347 to your computer and use it in GitHub Desktop.
Heroku Bundler Error
# Heroku: bamboo-mri-1.9.2 -- I was trying Cedar to no avail as well.
# Heroku Bundler Version 1.0.7
# Local Version is: ( Bundler version 1.1.0 ) not sure if this matters
# Error I am receiving:
# You have modified your Gemfile in development but did not check
# the resulting snapshot (Gemfile.lock) into version control
#
# You have added to the Gemfile:
# * libnotify
# * rb-inotify
#
# You have deleted from the Gemfile:
# * growl
# * rb-fsevent
# THINGS I HAVE TRIED:
# - Gemfile.lock is NOT in my .gitignore
# - Removed > rm -rf Gemfile.lock
> git rm -rf Gemfile.lock
# Ran bundle install again and many many commits -- Same error
# - After did try a > Bundle update (Same thing)
# - tried running: > bundle install --without development:test
# Same error
# Like I mentioned above, tried with Cedar a few times and then created a Bamboo stack. Same error.
# Here is my Gemfile -- No idea why Im getting these errors:
source 'http://rubygems.org'
gem 'rails', '3.2.2'
group :production, :staging do
gem 'pg'
gem 'thin'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem "devise", ">= 2.0.4"
gem "zurb-foundation"
gem "bourbon"
#OmniAuth
gem 'omniauth'
gem 'omniauth-shopify'
gem 'shopify_app'
gem 'omniauth-identity'
gem 'bcrypt-ruby', '~> 3.0.0' # required for omniauth 1.0 identity gem
group :development, :test do
gem 'mysql2'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment