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)
This commit is contained in:
parent
21d566ea76
commit
284ba65e8a
2 changed files with 4 additions and 4 deletions
4
Gemfile
4
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue