mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
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 ```
This commit is contained in:
parent
887d9a4f52
commit
24b97637b4
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
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'
|
||||
|
|
Loading…
Reference in a new issue