From 897d31e340cbad721f6a4bbb25b3b1a1032d893f Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sun, 9 Apr 2017 19:03:30 +0200 Subject: [PATCH] Install all dependencies in an authenticated way (https) git:// is unauthenticated!!! --- Gemfile | 10 +++++----- Gemfile.lock | 4 ++-- config/deploy.rb.SAMPLE | 2 +- plugins/wiki/README.md | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index d73c4732..58b2c904 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ gem 'haml-rails' gem 'kaminari' gem 'simple_form' gem 'inherited_resources' -gem 'localize_input', git: "git://github.com/bennibu/localize_input.git" +gem 'localize_input', git: "https://github.com/bennibu/localize_input.git" gem 'daemons' gem 'twitter-bootstrap-rails', '~> 2.2.8' gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap @@ -49,7 +49,7 @@ gem 'gaffe' gem 'ruby-filemagic' # we use the git version of acts_as_versioned, and need to include it in this Gemfile -gem 'acts_as_versioned', github: 'technoweenie/acts_as_versioned' +gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git' gem 'foodsoft_wiki', path: 'plugins/wiki' gem 'foodsoft_messages', path: 'plugins/messages' @@ -71,20 +71,20 @@ group :development do # allow to use `debugger` https://github.com/conradirwin/pry-rescue gem 'pry-rescue' gem 'pry-stack_explorer' - + # Better error output gem 'better_errors' gem 'binding_of_caller' # gem "rails-i18n-debug" # chrome debugging extension https://github.com/dejan/rails_panel gem 'meta_request' - + # Get infos when not using proper eager loading gem 'bullet' # Hide assets requests in log gem 'quiet_assets' - + # Deploy with Capistrano gem 'capistrano', '~> 3.2.0', require: false gem 'capistrano-rvm', require: false diff --git a/Gemfile.lock b/Gemfile.lock index 05cc584e..ac73c322 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,11 +1,11 @@ GIT - remote: git://github.com/bennibu/localize_input.git + remote: https://github.com/bennibu/localize_input.git revision: 5eb188d2525a073d09e142cf8b0b04e6ace6e7b0 specs: localize_input (0.1.0) GIT - remote: git://github.com/technoweenie/acts_as_versioned.git + remote: https://github.com/technoweenie/acts_as_versioned.git revision: 63b1fc8529d028fae632fe80ec0cb25df56cd76b specs: acts_as_versioned (0.6.0) diff --git a/config/deploy.rb.SAMPLE b/config/deploy.rb.SAMPLE index 30ff9708..301183fd 100644 --- a/config/deploy.rb.SAMPLE +++ b/config/deploy.rb.SAMPLE @@ -12,7 +12,7 @@ set :application, 'foodsoft' # application name (whatever you set :domain, 'order.foodcoop.test' # host set :user, 'deploy' # ssh deploy user set :keep_releases, 10 -set :repo_url, 'git://github.com/foodcoops/foodsoft.git' +set :repo_url, 'https://github.com/foodcoops/foodsoft.git' set :deploy_to, "/www/apps/#{fetch :application}-#{fetch :stage}" # more settings which are probably ok diff --git a/plugins/wiki/README.md b/plugins/wiki/README.md index 1f6b866d..ae95de94 100644 --- a/plugins/wiki/README.md +++ b/plugins/wiki/README.md @@ -10,7 +10,7 @@ add the following to foodsoft's Gemfile: ```Gemfile # we use the git version of acts_as_versioned, so this needs to be in foodsoft's Gemfile -gem 'acts_as_versioned', git: 'git://github.com/technoweenie/acts_as_versioned.git' +gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git' gem 'foodsoft_wiki', path: 'lib/foodsoft_wiki' ```