Skip to content

Commit 46d10ea

Browse files
authored
switch git from git to https (#1697)
1 parent 7f0a32c commit 46d10ea

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Gemfile-rails-dependencies

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
version_file = File.expand_path("../.rails-version", __FILE__)
22
case version = ENV['RAILS_VERSION'] || (File.exist?(version_file) && File.read(version_file).chomp)
33
when /master/
4-
gem "rails", :git => "git://github.com/rails/rails.git"
5-
gem "arel", :git => "git://github.com/rails/arel.git"
6-
gem "journey", :git => "git://github.com/rails/journey.git"
7-
gem "activerecord-deprecated_finders", :git => "git://github.com/rails/activerecord-deprecated_finders.git"
8-
gem "rails-observers", :git => "git://github.com/rails/rails-observers"
9-
gem "web-console", :git => "git://github.com/rails/web-console", :group => :development
10-
gem 'sass-rails', :git => "git://github.com/rails/sass-rails.git"
11-
gem 'coffee-rails', :git => "git://github.com/rails/coffee-rails.git"
12-
gem 'rack', :git => 'git://github.com/rack/rack.git'
13-
gem 'i18n', :git => 'git://github.com/svenfuchs/i18n.git', :branch => 'master'
14-
gem 'sprockets', :git => 'git://github.com/rails/sprockets.git', :branch => 'master'
15-
gem 'sprockets-rails', :git => 'git://github.com/rails/sprockets-rails.git', :branch => 'master'
4+
gem "rails", :git => "https://github.com/rails/rails.git"
5+
gem "arel", :git => "https://github.com/rails/arel.git"
6+
gem "journey", :git => "https://github.com/rails/journey.git"
7+
gem "activerecord-deprecated_finders", :git => "https://github.com/rails/activerecord-deprecated_finders.git"
8+
gem "rails-observers", :git => "https://github.com/rails/rails-observers"
9+
gem "web-console", :git => "https://github.com/rails/web-console", :group => :development
10+
gem 'sass-rails', :git => "https://github.com/rails/sass-rails.git"
11+
gem 'coffee-rails', :git => "https://github.com/rails/coffee-rails.git"
12+
gem 'rack', :git => 'https://github.com/rack/rack.git'
13+
gem 'i18n', :git => 'https://github.com/svenfuchs/i18n.git', :branch => 'master'
14+
gem 'sprockets', :git => 'https://github.com/rails/sprockets.git', :branch => 'master'
15+
gem 'sprockets-rails', :git => 'https://github.com/rails/sprockets-rails.git', :branch => 'master'
1616
if RUBY_VERSION >= "2.2"
17-
gem 'puma', :git => 'git://github.com/puma/puma', :branch => 'master'
17+
gem 'puma', :git => 'https://github.com/puma/puma', :branch => 'master'
1818
end
1919
when /stable$/
2020
gem_list = %w[rails railties actionmailer actionpack activerecord activesupport]
@@ -25,7 +25,7 @@ when /stable$/
2525
end
2626

2727
gem_list.each do |rails_gem|
28-
gem rails_gem, :git => "git://github.com/rails/rails.git", :branch => version
28+
gem rails_gem, :git => "https://github.com/rails/rails.git", :branch => version
2929
end
3030
when nil, false, ""
3131
if RUBY_VERSION < '1.9.3'

Gemfile-rspec-dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp
44
if File.exist?(library_path) && !ENV['USE_GIT_REPOS']
55
gem lib, :path => library_path, :require => false
66
else
7-
gem lib, :git => "git://github.com/rspec/#{lib}.git", :branch => branch, :require => false
7+
gem lib, :git => "https://github.com/rspec/#{lib}.git", :branch => branch, :require => false
88
end
99
end

script/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
function clone_repo {
2121
if [ ! -d $1 ]; then # don't clone if the dir is already there
22-
travis_retry eval "git clone git://github.com/rspec/$1 --depth 1 --branch $MAINTENANCE_BRANCH"
22+
travis_retry eval "git clone https://github.com/rspec/$1 --depth 1 --branch $MAINTENANCE_BRANCH"
2323
fi;
2424
}
2525

0 commit comments

Comments
 (0)