vagrant-pe_build 0.13.6 → 0.13.7
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 +4 -4
- data/.travis.yml +13 -7
- data/CHANGELOG +13 -0
- data/Gemfile +2 -3
- data/lib/pe_build/release/2015_3.rb +2 -0
- data/lib/pe_build/release/3_8.rb +1 -5
- data/lib/pe_build/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fb108a09ab72f010038b21ddc2933bf0efe832c
|
|
4
|
+
data.tar.gz: fbdb45d716f89915161d5b03544d652e0c7470fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0386ae66e02cf584543d6a6d59a620daec5bf132f9dbfec7f6d3659347c7e645446801f95a6ea36b6f479de0ed613eabe0def88c9bb02f9c267f0fda75909fe6
|
|
7
|
+
data.tar.gz: 0c8ff26242f7b9de5a74633591e8158169b3804a3e7969f120a5506e4f1849c685576d660282250c1b3f25d65fac98cd8623c55378934bdb08fb1b48e2a86837
|
data/.travis.yml
CHANGED
|
@@ -7,13 +7,19 @@ install: bundle _${BUNDLER_VERSION}_ install --without development
|
|
|
7
7
|
script: bundle _${BUNDLER_VERSION}_ exec rspec --color --format documentation
|
|
8
8
|
notifications:
|
|
9
9
|
email: false
|
|
10
|
-
|
|
11
|
-
- 2.0.0
|
|
10
|
+
|
|
12
11
|
env:
|
|
13
12
|
global:
|
|
14
13
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
14
|
+
|
|
15
|
+
matrix:
|
|
16
|
+
include:
|
|
17
|
+
- rvm: 2.0.0
|
|
18
|
+
env: TEST_VAGRANT_VERSION=v1.6.5 BUNDLER_VERSION=1.6.9
|
|
19
|
+
- rvm: 2.0.0
|
|
20
|
+
env: TEST_VAGRANT_VERSION=v1.7.4 BUNDLER_VERSION=1.10.5
|
|
21
|
+
|
|
22
|
+
- rvm: 2.2.3
|
|
23
|
+
env: TEST_VAGRANT_VERSION=v1.8.1 BUNDLER_VERSION=1.10.6
|
|
24
|
+
- rvm: 2.2.3
|
|
25
|
+
env: TEST_VAGRANT_VERSION=HEAD BUNDLER_VERSION=1.10.6
|
data/CHANGELOG
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
vagrant-pe_build
|
|
2
2
|
================
|
|
3
3
|
|
|
4
|
+
0.13.7
|
|
5
|
+
------
|
|
6
|
+
|
|
7
|
+
2015-02-10
|
|
8
|
+
|
|
9
|
+
This is a backwards compatible bugfix release.
|
|
10
|
+
|
|
11
|
+
* (GH-111) Add support for all forseeable 3.8.z releases as the answer file
|
|
12
|
+
format is unlikely to change.
|
|
13
|
+
|
|
14
|
+
* Add support for PE 2015.3.1 and PE 2015.3.2.
|
|
15
|
+
|
|
16
|
+
|
|
4
17
|
0.13.6
|
|
5
18
|
------
|
|
6
19
|
|
data/Gemfile
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
|
-
ruby '2.0.0' # Required by Vagrant 1.4 and newer.
|
|
3
2
|
|
|
4
|
-
ENV['TEST_VAGRANT_VERSION'] ||= 'v1.
|
|
3
|
+
ENV['TEST_VAGRANT_VERSION'] ||= 'v1.8.1'
|
|
5
4
|
|
|
6
5
|
# Wrapping gemspec in the :plugins group causes Vagrant 1.5 and newer to
|
|
7
6
|
# automagically load this plugin during acceptance tests.
|
|
@@ -21,7 +20,7 @@ group :test do
|
|
|
21
20
|
gem 'vagrant', :github => 'mitchellh/vagrant', :tag => ENV['TEST_VAGRANT_VERSION']
|
|
22
21
|
end
|
|
23
22
|
|
|
24
|
-
# Pinned on 12/10/2014. Compatible with Vagrant 1.
|
|
23
|
+
# Pinned on 12/10/2014. Compatible with Vagrant 1.6.x, 1.7.x and 1.8.x.
|
|
25
24
|
gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec', :ref => '1df5a3a'
|
|
26
25
|
end
|
|
27
26
|
|
data/lib/pe_build/release/3_8.rb
CHANGED
|
@@ -54,10 +54,6 @@ module PEBuild::Release
|
|
|
54
54
|
set_answer_file :master, File.join(PEBuild.template_dir, 'answers', 'master-3.x.txt.erb')
|
|
55
55
|
set_answer_file :agent, File.join(PEBuild.template_dir, 'answers', 'agent-3.x.txt.erb')
|
|
56
56
|
end
|
|
57
|
-
|
|
58
|
-
@releases['3.8.0'] = three_eight_x
|
|
59
|
-
@releases['3.8.1'] = three_eight_x
|
|
60
|
-
@releases['3.8.2'] = three_eight_x
|
|
61
|
-
@releases['3.8.3'] = three_eight_x
|
|
57
|
+
(0..99).each { |z| @releases["3.8.#{z}"] = three_eight_x }
|
|
62
58
|
end
|
|
63
59
|
|
data/lib/pe_build/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-pe_build
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.13.
|
|
4
|
+
version: 0.13.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrien Thebo
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2016-02-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: progressbar
|