From 24b97637b467c608c79753a44eb012815b8a70bd Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Mon, 10 Apr 2017 10:02:10 +0200 Subject: [PATCH] Gemfile: Use HTTPS protocol for sneaky-save Address the Bundler warning below. ``` Step 6/14 : RUN bundle install ---> Running in bfbfa83e61de The git source `git://github.com/einzige/sneaky-save.git` uses the `git` protocol, which transmits data without encryption. Disable this warning with `bundle config git.allow_insecure true`, or switch to the `https` protocol to keep your data secure. Your Ruby version is 2.3.4, but your Gemfile specified 2.3.3 The command '/bin/sh -c bundle install' returned a non-zero code: 18 ``` --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index d545da3ae..cae686400 100644 --- a/Gemfile +++ b/Gemfile @@ -55,7 +55,7 @@ gem 'faker' # Generate fake data gem 'auto_strip_attributes', '~> 2.1' # Removes unnecessary whitespaces from ActiveRecord or ActiveModel attributes gem 'deface', '~> 1.0' gem 'nokogiri' # HTML/XML parser -gem 'sneaky-save', git: 'git://github.com/einzige/sneaky-save.git' +gem 'sneaky-save', git: 'https://github.com/einzige/sneaky-save' gem 'rails_autolink', '~> 1.1', '>= 1.1.6' gem 'delayed_paperclip' gem 'rubyzip'