Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShane O'Grady <shane.ogrady@gmail.com>2011-11-23 16:27:06 +0400
committerShane O'Grady <shane.ogrady@gmail.com>2011-11-23 16:27:06 +0400
commit284ba65e8abb892002136ca5d331675d6085d9d1 (patch)
treeded8da65133f8e743c89531b518e9b04c80ae6a2 /Gemfile
parent21d566ea76bbdbfd943b946f714eac1cfd94546b (diff)
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)
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 459a8b41af0..857ea229acb 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,7 +8,7 @@ gem 'stamp'
gem 'kaminari'
gem 'haml-rails'
gem 'jquery-rails'
-gem 'grit', :git => 'git://github.com/gitlabhq/grit.git'
+gem 'grit', :git => 'https://github.com/gitlabhq/grit.git'
gem "carrierwave"
gem 'six'
gem 'therubyracer'
@@ -32,7 +32,7 @@ end
group :development do
gem 'letter_opener'
gem 'rails-footnotes', '~> 3.7.5'
- gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
+ gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git'
end
group :development, :test do