summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-10-18 13:12:50 +0200
committerAzul <azul@leap.se>2013-10-18 13:12:50 +0200
commit936015afe051c82d5677601f7f58944ed42b4623 (patch)
treec683c8acef256d7825ceab2cb24a2c530f98ec66
parented3b83e31a16732f309eb470358bf06c1190b4f8 (diff)
use https sources in Gemfiles and also in the documentation (#4109)
-rw-r--r--Gemfile2
-rw-r--r--INSTALL.md4
-rw-r--r--billing/Gemfile2
-rw-r--r--certs/Gemfile2
-rw-r--r--config/deploy.rb.example2
-rw-r--r--core/Gemfile2
-rw-r--r--help/Gemfile2
-rw-r--r--users/Gemfile2
8 files changed, 9 insertions, 9 deletions
diff --git a/Gemfile b/Gemfile
index 8ca0eaf..a346afa 100644
--- a/Gemfile
+++ b/Gemfile
@@ -29,4 +29,4 @@ group :test do
end
# unreleased so far ... but leap_web_certs need it
-gem 'certificate_authority', :git => 'git://github.com/cchandler/certificate_authority.git'
+gem 'certificate_authority', :git => 'https://github.com/cchandler/certificate_authority.git'
diff --git a/INSTALL.md b/INSTALL.md
index 7e95b76..75cb2a6 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -8,7 +8,7 @@ Install git, ruby 1.9, rubygems and couchdb on your system. Then run
```
gem install bundler
-git clone git://github.com/leapcode/leap_web.git
+git clone https://leap.se/git/leap_web
cd leap_web
git submodule init
git submodule update
@@ -36,7 +36,7 @@ The following packages need to be installed:
Simply clone the git repository:
```
- git clone git://github.com/leapcode/leap_web.git
+ git clone https://leap.se/git/leap_web
cd leap_web
```
diff --git a/billing/Gemfile b/billing/Gemfile
index 68ea51b..30e9669 100644
--- a/billing/Gemfile
+++ b/billing/Gemfile
@@ -1,4 +1,4 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb'))
eval(File.read(File.dirname(__FILE__) + '/../ui_dependencies.rb'))
diff --git a/certs/Gemfile b/certs/Gemfile
index 951d1b7..992f236 100644
--- a/certs/Gemfile
+++ b/certs/Gemfile
@@ -1,4 +1,4 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb'))
diff --git a/config/deploy.rb.example b/config/deploy.rb.example
index 9e54c22..1fd4b8c 100644
--- a/config/deploy.rb.example
+++ b/config/deploy.rb.example
@@ -3,7 +3,7 @@ require "bundler/capistrano"
set :application, "webapp"
set :scm, :git
-set :repository, "git://leap.se/leap_web"
+set :repository, "https://leap.se/git/leap_web"
set :branch, "master"
set :deploy_via, :remote_cache
diff --git a/core/Gemfile b/core/Gemfile
index 52ed377..b552dc5 100644
--- a/core/Gemfile
+++ b/core/Gemfile
@@ -1,4 +1,4 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
# Declare your gem's dependencies in leap_web_core.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
diff --git a/help/Gemfile b/help/Gemfile
index 5e895e9..ad7d29b 100644
--- a/help/Gemfile
+++ b/help/Gemfile
@@ -1,4 +1,4 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb'))
eval(File.read(File.dirname(__FILE__) + '/..//ui_dependencies.rb'))
diff --git a/users/Gemfile b/users/Gemfile
index e30033a..4101ead 100644
--- a/users/Gemfile
+++ b/users/Gemfile
@@ -1,4 +1,4 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb'))
eval(File.read(File.dirname(__FILE__) + '/../ui_dependencies.rb'))