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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6fc28316cbfcac51c9f960d08a07790df7cfaed
4
- data.tar.gz: 96255f6f6350fabc1263b994542b53e90792b5dc
3
+ metadata.gz: 6fb108a09ab72f010038b21ddc2933bf0efe832c
4
+ data.tar.gz: fbdb45d716f89915161d5b03544d652e0c7470fc
5
5
  SHA512:
6
- metadata.gz: fa4ebc9fa44a337d04cdfeebaf1e6fd824cff1bb72a9298acab3ffaaf77a5d9f1a93040df89c2744ab071515f50cb011b59f1208fc9f5d5dd7b319da9c552311
7
- data.tar.gz: f6c6c756e2cdc6469b34eec2218238928d18d7a3a687e47c84a7e36c9260d459ebef57ceb9f21ff54a6701118cd242046f5ed135d08a84cf678d6ab81e88a6d7
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
- rvm:
11
- - 2.0.0
10
+
12
11
  env:
13
12
  global:
14
13
  - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
15
- matrix:
16
- - TEST_VAGRANT_VERSION=v1.5.4 BUNDLER_VERSION=1.5.3
17
- - TEST_VAGRANT_VERSION=v1.6.5 BUNDLER_VERSION=1.6.9
18
- - TEST_VAGRANT_VERSION=v1.7.4 BUNDLER_VERSION=1.10.5
19
- - TEST_VAGRANT_VERSION=HEAD BUNDLER_VERSION=1.10.5
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.7.4'
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.5.x, 1.6.x and 1.7.x.
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
 
@@ -33,4 +33,6 @@ module PEBuild::Release
33
33
  end
34
34
 
35
35
  @releases['2015.3.0'] = twentyfifteen_three_x
36
+ @releases['2015.3.1'] = twentyfifteen_three_x
37
+ @releases['2015.3.2'] = twentyfifteen_three_x
36
38
  end
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.13.6'
2
+ VERSION = '0.13.7'
3
3
  end
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.6
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: 2015-12-17 00:00:00.000000000 Z
12
+ date: 2016-02-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: progressbar