vagrant-pe_build 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29dd8c2def4f991f2bde41e3f038caba030913c0
4
- data.tar.gz: 2f6f32f7e364684d98ca8bce8c3a6675231aaa8f
3
+ metadata.gz: f3b2d4f8d25278319c41b509bcca8eddb4a9587f
4
+ data.tar.gz: 2385818b366ccc7dfe9f90067a4810823184b5d8
5
5
  SHA512:
6
- metadata.gz: 6d0b9dc448a47db058a57a284cf8b6a27a7738ce877d54e30aa0ad2e1950cdd9f3d3ff2cd2cc24af4b389005edab530aeb359f0ab6b981790f2e1e4ade995605
7
- data.tar.gz: 944b233479eeb4ede0bb5e2b5e5f7fd093ed03162d9dd2705b2516d02186f8345ac2d6fddb079ad53395b93a4351a6e1600725a04dc3a170a8539377106325a5
6
+ metadata.gz: 4042d390c001d519001b2176c4d7c694ab355cae68428c650aa00180d3b9e8b88a2641fd48e73b4d6e717277b2bfbcd355e348e3457df2b099dba7c3e4607da2
7
+ data.tar.gz: 3b6ed12480decf527a6c87207f51d209b270ae16acff78d295ed7210c4c54209b51bd44964e4f7ef4c51b6aa12571b5acee11f83d0b1241bbbb80884ab4b5e9c
data/CHANGELOG CHANGED
@@ -1,6 +1,15 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.9.4
5
+ -----
6
+
7
+ 2014-08-29
8
+
9
+ This is a backwards compatible patch release.
10
+
11
+ * Fix detection of Solaris 11 as a Solaris operating system.
12
+
4
13
  0.9.3
5
14
  -----
6
15
 
@@ -61,9 +61,11 @@ module PEBuild
61
61
  PEBuild::Cap::DetectInstaller::SLES
62
62
  end
63
63
 
64
- guest_capability('solaris', 'detect_installer') do
65
- require_relative 'cap'
66
- PEBuild::Cap::DetectInstaller::Solaris
64
+ [:solaris, :solaris11].each do |os|
65
+ guest_capability(os, 'detect_installer') do
66
+ require_relative 'cap'
67
+ PEBuild::Cap::DetectInstaller::Solaris
68
+ end
67
69
  end
68
70
 
69
71
  guest_capability('windows', 'detect_installer') do
@@ -78,9 +80,11 @@ module PEBuild
78
80
  PEBuild::Cap::RunInstall::POSIX
79
81
  end
80
82
 
81
- guest_capability('solaris', 'run_install') do
82
- require_relative 'cap'
83
- PEBuild::Cap::RunInstall::POSIX
83
+ [:solaris, :solaris11].each do |os|
84
+ guest_capability(os, 'run_install') do
85
+ require_relative 'cap'
86
+ PEBuild::Cap::RunInstall::POSIX
87
+ end
84
88
  end
85
89
 
86
90
  guest_capability('windows', 'run_install') do
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.9.3'
2
+ VERSION = '0.9.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-pe_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-20 00:00:00.000000000 Z
11
+ date: 2014-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: progressbar