vagrant-proxyconf 2.0.3 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.travis.yml +12 -7
- data/CHANGELOG.md +141 -1
- data/Gemfile +1 -18
- data/Jenkinsfile +60 -0
- data/Makefile +33 -0
- data/README.md +22 -0
- data/deps/patches/lib/vagrant/bundler.rb.patch +14 -0
- data/jenkins/helper_functions +206 -0
- data/lib/vagrant-proxyconf/action/base.rb +20 -9
- data/lib/vagrant-proxyconf/action/configure_docker_proxy.rb +21 -21
- data/lib/vagrant-proxyconf/config/apt_proxy.rb +21 -2
- data/lib/vagrant-proxyconf/version.rb +1 -1
- data/spec/unit/support/shared/apt_proxy_config.rb +12 -0
- data/spec/unit/vagrant-proxyconf/action/configure_docker_proxy_spec.rb +23 -21
- data/spec/unit/vagrant-proxyconf/action/configure_svn_proxy_spec.rb +1 -0
- data/test/issues/172/README.md +2 -2
- data/test/issues/172/spec/docker_host/redhat_spec.rb +2 -2
- data/test/issues/180/spec/docker_host/redhat_spec.rb +2 -2
- data/test/issues/192/.rspec +2 -0
- data/test/issues/192/Dockerfile +47 -0
- data/test/issues/192/Dockerfile.bionic +40 -0
- data/test/issues/192/README.md +29 -0
- data/test/issues/192/Rakefile +27 -0
- data/test/issues/192/Vagrantfile +64 -0
- data/test/issues/192/entrypoint.sh +50 -0
- data/test/issues/192/spec/default/redhat_spec.rb +15 -0
- data/test/issues/192/spec/docker_host/ubuntu_spec.rb +3 -0
- data/test/issues/192/spec/spec_helper.rb +52 -0
- data/test/issues/192/tinyproxy.conf +333 -0
- data/test/issues/199/.rspec +2 -0
- data/test/issues/199/Dockerfile +47 -0
- data/test/issues/199/README.md +31 -0
- data/test/issues/199/Rakefile +27 -0
- data/test/issues/199/Vagrantfile +74 -0
- data/test/issues/199/entrypoint.sh +50 -0
- data/test/issues/199/spec/apt_host/ubuntu_spec.rb +135 -0
- data/test/issues/199/spec/default/redhat_spec.rb +15 -0
- data/test/issues/199/spec/spec_helper.rb +52 -0
- data/test/issues/199/tinyproxy.conf +333 -0
- metadata +49 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-proxyconf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Teemu Matilainen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A Vagrant plugin that configures the virtual machine to use proxy servers
|
14
14
|
email:
|
@@ -23,9 +23,12 @@ files:
|
|
23
23
|
- CHANGELOG.md
|
24
24
|
- Gemfile
|
25
25
|
- Guardfile
|
26
|
+
- Jenkinsfile
|
26
27
|
- LICENSE.txt
|
28
|
+
- Makefile
|
27
29
|
- README.md
|
28
30
|
- Rakefile
|
31
|
+
- deps/patches/lib/vagrant/bundler.rb.patch
|
29
32
|
- development/.gitignore
|
30
33
|
- development/Dockerfile
|
31
34
|
- development/README.md
|
@@ -33,6 +36,7 @@ files:
|
|
33
36
|
- development/install-c7.sh
|
34
37
|
- development/install-debian.sh
|
35
38
|
- development/tinyproxy.conf
|
39
|
+
- jenkins/helper_functions
|
36
40
|
- lib/vagrant-proxyconf.rb
|
37
41
|
- lib/vagrant-proxyconf/action.rb
|
38
42
|
- lib/vagrant-proxyconf/action/base.rb
|
@@ -158,6 +162,27 @@ files:
|
|
158
162
|
- test/issues/180/spec/docker_host/redhat_spec.rb
|
159
163
|
- test/issues/180/spec/spec_helper.rb
|
160
164
|
- test/issues/180/tinyproxy.conf
|
165
|
+
- test/issues/192/.rspec
|
166
|
+
- test/issues/192/Dockerfile
|
167
|
+
- test/issues/192/Dockerfile.bionic
|
168
|
+
- test/issues/192/README.md
|
169
|
+
- test/issues/192/Rakefile
|
170
|
+
- test/issues/192/Vagrantfile
|
171
|
+
- test/issues/192/entrypoint.sh
|
172
|
+
- test/issues/192/spec/default/redhat_spec.rb
|
173
|
+
- test/issues/192/spec/docker_host/ubuntu_spec.rb
|
174
|
+
- test/issues/192/spec/spec_helper.rb
|
175
|
+
- test/issues/192/tinyproxy.conf
|
176
|
+
- test/issues/199/.rspec
|
177
|
+
- test/issues/199/Dockerfile
|
178
|
+
- test/issues/199/README.md
|
179
|
+
- test/issues/199/Rakefile
|
180
|
+
- test/issues/199/Vagrantfile
|
181
|
+
- test/issues/199/entrypoint.sh
|
182
|
+
- test/issues/199/spec/apt_host/ubuntu_spec.rb
|
183
|
+
- test/issues/199/spec/default/redhat_spec.rb
|
184
|
+
- test/issues/199/spec/spec_helper.rb
|
185
|
+
- test/issues/199/tinyproxy.conf
|
161
186
|
- travis/before_install
|
162
187
|
- vagrant-proxyconf.gemspec
|
163
188
|
homepage: http://tmatilai.github.io/vagrant-proxyconf/
|
@@ -179,8 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
204
|
- !ruby/object:Gem::Version
|
180
205
|
version: '0'
|
181
206
|
requirements: []
|
182
|
-
|
183
|
-
rubygems_version: 2.6.14.1
|
207
|
+
rubygems_version: 3.0.3
|
184
208
|
signing_key:
|
185
209
|
specification_version: 4
|
186
210
|
summary: A Vagrant plugin that configures the virtual machine to use proxy servers
|
@@ -260,3 +284,24 @@ test_files:
|
|
260
284
|
- test/issues/180/spec/docker_host/redhat_spec.rb
|
261
285
|
- test/issues/180/spec/spec_helper.rb
|
262
286
|
- test/issues/180/tinyproxy.conf
|
287
|
+
- test/issues/192/.rspec
|
288
|
+
- test/issues/192/Dockerfile
|
289
|
+
- test/issues/192/Dockerfile.bionic
|
290
|
+
- test/issues/192/README.md
|
291
|
+
- test/issues/192/Rakefile
|
292
|
+
- test/issues/192/Vagrantfile
|
293
|
+
- test/issues/192/entrypoint.sh
|
294
|
+
- test/issues/192/spec/default/redhat_spec.rb
|
295
|
+
- test/issues/192/spec/docker_host/ubuntu_spec.rb
|
296
|
+
- test/issues/192/spec/spec_helper.rb
|
297
|
+
- test/issues/192/tinyproxy.conf
|
298
|
+
- test/issues/199/.rspec
|
299
|
+
- test/issues/199/Dockerfile
|
300
|
+
- test/issues/199/README.md
|
301
|
+
- test/issues/199/Rakefile
|
302
|
+
- test/issues/199/Vagrantfile
|
303
|
+
- test/issues/199/entrypoint.sh
|
304
|
+
- test/issues/199/spec/apt_host/ubuntu_spec.rb
|
305
|
+
- test/issues/199/spec/default/redhat_spec.rb
|
306
|
+
- test/issues/199/spec/spec_helper.rb
|
307
|
+
- test/issues/199/tinyproxy.conf
|