Commit 5d1a1a92b7b683f9cee421bb08120fc04184a3b8

Authored by Dmitriy Zaporozhets
2 parents 3e336715 284ba65e

Merge pull request #142 from shaneog/master

Use HTTPS protocol in Gemfile
Showing 2 changed files with 4 additions and 4 deletions   Show diff stats
Gemfile
... ... @@ -8,7 +8,7 @@ gem 'stamp'
8 8 gem 'kaminari'
9 9 gem 'haml-rails'
10 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 12 gem "carrierwave"
13 13 gem 'six'
14 14 gem 'therubyracer'
... ... @@ -32,7 +32,7 @@ end
32 32 group :development do
33 33 gem 'letter_opener'
34 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 36 end
37 37  
38 38 group :development, :test do
... ...
Gemfile.lock
1 1 GIT
2   - remote: git://github.com/ctran/annotate_models.git
  2 + remote: https://github.com/ctran/annotate_models.git
3 3 revision: fb73329243056a6d9a64878e5c543aba9b6417de
4 4 specs:
5 5 annotate (2.4.1.beta1)
6 6  
7 7 GIT
8   - remote: git://github.com/gitlabhq/grit.git
  8 + remote: https://github.com/gitlabhq/grit.git
9 9 revision: ff015074ef35bd94cba943f9c0f98e161ab5851c
10 10 specs:
11 11 grit (2.4.1)
... ...