Syntax error in Gemfile
Created by: sriehl
When following the install guide this error crops up.
sriehl@seed:/home/gitlab/gitlab$ sudo -u gitlab -H bundle install --without development test --deployment
Gemfile syntax error:
/home/gitlab/gitlab/Gemfile:66: syntax error, unexpected ':', expecting $end
gem "github-markup", "~> 0.7.4", require: 'github/markup'
^
changing line 66 in Gemfile to read:
gem "github-markup", "~> 0.7.4", :require => 'github/markup'
fixes it.