Commit 284ba65e8abb892002136ca5d331675d6085d9d1
1 parent
21d566ea
Exists in
master
and in
4 other branches
Use HTTPS Protocol in Gemfile
Switch to the https protocol in the Gemfile & Gemfile.lock since the git protocol is sometimes blocked by firewalls (and is not easily proxied)
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
Gemfile
@@ -8,7 +8,7 @@ gem 'stamp' | @@ -8,7 +8,7 @@ gem 'stamp' | ||
8 | gem 'kaminari' | 8 | gem 'kaminari' |
9 | gem 'haml-rails' | 9 | gem 'haml-rails' |
10 | gem 'jquery-rails' | 10 | gem 'jquery-rails' |
11 | -gem 'grit', :git => 'git://github.com/gitlabhq/grit.git' | 11 | +gem 'grit', :git => 'https://github.com/gitlabhq/grit.git' |
12 | gem "carrierwave" | 12 | gem "carrierwave" |
13 | gem 'six' | 13 | gem 'six' |
14 | gem 'therubyracer' | 14 | gem 'therubyracer' |
@@ -32,7 +32,7 @@ end | @@ -32,7 +32,7 @@ end | ||
32 | group :development do | 32 | group :development do |
33 | gem 'letter_opener' | 33 | gem 'letter_opener' |
34 | gem 'rails-footnotes', '~> 3.7.5' | 34 | gem 'rails-footnotes', '~> 3.7.5' |
35 | - gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git' | 35 | + gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git' |
36 | end | 36 | end |
37 | 37 | ||
38 | group :development, :test do | 38 | group :development, :test do |
Gemfile.lock
1 | GIT | 1 | GIT |
2 | - remote: git://github.com/ctran/annotate_models.git | 2 | + remote: https://github.com/ctran/annotate_models.git |
3 | revision: fb73329243056a6d9a64878e5c543aba9b6417de | 3 | revision: fb73329243056a6d9a64878e5c543aba9b6417de |
4 | specs: | 4 | specs: |
5 | annotate (2.4.1.beta1) | 5 | annotate (2.4.1.beta1) |
6 | 6 | ||
7 | GIT | 7 | GIT |
8 | - remote: git://github.com/gitlabhq/grit.git | 8 | + remote: https://github.com/gitlabhq/grit.git |
9 | revision: ff015074ef35bd94cba943f9c0f98e161ab5851c | 9 | revision: ff015074ef35bd94cba943f9c0f98e161ab5851c |
10 | specs: | 10 | specs: |
11 | grit (2.4.1) | 11 | grit (2.4.1) |