Merge branch 'use-more-rugged' into 'master'
Make GitLab CE works with new gitlab_git Recently we removed grit dependency from `gitlab_git` in favor of rugged. This changes make GitLab works with new library. See merge request !194
Showing
... | @@ -31,7 +31,8 @@ gem 'omniauth-shibboleth' | ... | @@ -31,7 +31,8 @@ gem 'omniauth-shibboleth' |
# Extracting information from a git repository | # Extracting information from a git repository | ||
# Provide access to Gitlab::Git library | # Provide access to Gitlab::Git library | ||
gem "gitlab_git", '~> 6.0' | # gem "gitlab_git", path: '../../gitlab_git' | ||
gem "gitlab_git", git: 'https://gitlab.com/gitlab-org/gitlab_git.git', ref: 'b53b948a9248ea3a4b7f2bd6c7f9938fbd5e952b' | |||
# Ruby/Rack Git Smart-HTTP Server Handler | # Ruby/Rack Git Smart-HTTP Server Handler | ||
gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' | gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' | ||
... | @@ -157,7 +158,7 @@ gem "rack-attack" | ... | @@ -157,7 +158,7 @@ gem "rack-attack" |
# Ace editor | # Ace editor | ||
gem 'ace-rails-ap' | gem 'ace-rails-ap' | ||
# Keyboard shortcuts | # Keyboard shortcuts | ||
gem 'mousetrap-rails' | gem 'mousetrap-rails' | ||
# Semantic UI Sass for Sidebar | # Semantic UI Sass for Sidebar | ||
... | ... |
Please register or sign in to comment