mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
"The git source git://github.com/rails/rails.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."
This commit is contained in:
parent
0c63f756e9
commit
e545113dfd
1 changed files with 7 additions and 2 deletions
|
@ -1,12 +1,17 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
git 'git://github.com/rails/rails.git' do
|
||||
git_source(:github) do |repo_name|
|
||||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
||||
"https://github.com/#{repo_name}.git"
|
||||
end
|
||||
|
||||
github 'rails/rails' do
|
||||
gem 'railties'
|
||||
gem 'activerecord', require: 'active_record'
|
||||
gem 'actionview', require: 'action_view'
|
||||
end
|
||||
|
||||
gem 'rack', git: 'git://github.com/rack/rack.git'
|
||||
gem 'rack', github: 'rack/rack'
|
||||
gem 'arel', github: 'rails/arel'
|
||||
|
||||
platforms :ruby do
|
||||
|
|
Loading…
Reference in a new issue