vagrant-proxyconf 0.4.0.rc1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +2 -1
- data/README.md +4 -0
- data/lib/vagrant-proxyconf/version.rb +1 -1
- metadata +9 -6
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# 0.4.0
|
1
|
+
# 0.4.0 / 2013-09-04
|
2
2
|
|
3
3
|
- BREAKING: Environment variables for Apt config renamed to `VAGRANT_APT_HTTP_PROXY` etc. ([GH-15][])
|
4
4
|
- Configure all supported programs with a single `config.proxy` configuration or `VAGRANT_HTTP_PROXY` etc. environment variables ([GH-14][], [GH-17][])
|
@@ -6,6 +6,7 @@
|
|
6
6
|
- Configure the VM also on `vagrant provision` ([GH-12][])
|
7
7
|
* Hook to all commands that trigger provisioning action
|
8
8
|
- Ensure the proxies are configured before [vagrant-omnibus](https://github.com/schisamo/vagrant-omnibus) ([GH-13][])
|
9
|
+
* Requires vagrant-omnibus v1.1.1 or newer to work correctly
|
9
10
|
|
10
11
|
# 0.3.0 / 2013-07-12
|
11
12
|
|
data/README.md
CHANGED
@@ -32,6 +32,8 @@ The following providers are confirmed to work:
|
|
32
32
|
[VirtualBox](http://docs.vagrantup.com/v2/virtualbox),
|
33
33
|
[VMware Fusion](http://docs.vagrantup.com/v2/vmware/index.html).
|
34
34
|
|
35
|
+
For the proxy configuration to take effect for [vagrant-omnibus](https://github.com/schisamo/vagrant-omnibus) plugin, version 1.1.1 or newer of it should be used.
|
36
|
+
|
35
37
|
## Installation
|
36
38
|
|
37
39
|
Install using standard Vagrant plugin installation method:
|
@@ -40,6 +42,8 @@ Install using standard Vagrant plugin installation method:
|
|
40
42
|
vagrant plugin install vagrant-proxyconf
|
41
43
|
```
|
42
44
|
|
45
|
+
See the [wiki](https://github.com/tmatilai/vagrant-proxyconf/wiki) for instructions to install a pre-release version.
|
46
|
+
|
43
47
|
## Usage
|
44
48
|
|
45
49
|
The plugin hooks itself to all Vagrant commands triggering provisioning (e.g. `vagrant up`, `vagrant provision`, etc.). The proxy configurations are written just before provisioners are run.
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-proxyconf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.4.0
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Teemu Matilainen
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-09-04 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: A Vagrant plugin that configures the virtual machine to use proxies
|
15
15
|
email:
|
@@ -70,13 +70,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
70
|
version: '0'
|
71
71
|
segments:
|
72
72
|
- 0
|
73
|
-
hash:
|
73
|
+
hash: 4185901625898732467
|
74
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
75
|
none: false
|
76
76
|
requirements:
|
77
|
-
- - ! '
|
77
|
+
- - ! '>='
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version:
|
79
|
+
version: '0'
|
80
|
+
segments:
|
81
|
+
- 0
|
82
|
+
hash: 4185901625898732467
|
80
83
|
requirements: []
|
81
84
|
rubyforge_project:
|
82
85
|
rubygems_version: 1.8.23
|