Gem 'gon' issue on Ubuntu LTS
Created by: wishlistmaster
Related to #5943 (closed)
Merge request reports
Activity
Created by: mic159
I am having issues upgrading to 6.4 now, it appears that you did not completely fix the Gemfile.lock.
I am getting:
me@host:/home/git/gitlab$ sudo -u git -H bundle install --without development test mysql --deployment You are trying to install in deployment mode after changing your Gemfile. Run `bundle install` elsewhere and add the updated Gemfile.lock to version control. You have added to the Gemfile: * gon (~> 5.0.0) You have deleted from the Gemfile: * gon You have changed in the Gemfile: * gon from `no specified source` to `rubygems repository https://rubygems.org/`
To fix it, I changed Gemfile.lock, under the
DEPENDENCIES
section at the bottom from:gon!
to:gon (~> 5.0.0)
By Administrator on 2014-01-05T00:57:52 (imported from GitLab project)
By Administrator on 2014-01-05T00:57:52 (imported from GitLab)
Created by: jozefvaclavik
+1 here. Meanwhile you can hack it by updating your Gemfile.lock on line 594. Change
gon!
togon (~> 5.0.0)
and then run bundle install from install guide again.By Administrator on 2014-01-06T11:05:37 (imported from GitLab project)
By Administrator on 2014-01-06T11:05:37 (imported from GitLab)