oscar 0.5.6 → 0.6.0
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/CHANGELOG +12 -0
- data/lib/oscar.rb +2 -0
- data/lib/oscar/version.rb +1 -1
- data/oscar.gemspec +2 -1
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf4aa88a7af1a4078ecbeac83991a8af9a889646
|
|
4
|
+
data.tar.gz: 3e02467d7a4a7193b383a71e0444a4126d5e423b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b194ad647d0b536cb901748443a950b2f69cfd1823206f6c5e9a18baf9a5d97d91bf1d1720391ae8dad079a4cc58177eaac4faf1ee32a223561652699874a3d
|
|
7
|
+
data.tar.gz: 02fa1716798018733b70c6a98ca468f07d9c69a676c969ad37833950d09d690d715e3a430c14a790f03ca7a47ffb9170772cf2d8a739f8702cb3e556f6df2bad
|
data/CHANGELOG
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
0.6.0
|
|
5
|
+
-----
|
|
6
|
+
|
|
7
|
+
2019-09-05
|
|
8
|
+
|
|
9
|
+
This is a backwards compatible update.
|
|
10
|
+
|
|
11
|
+
* Add a dependency on vagrant-bolt 0.1.x. Only used for Vagrant 2.2 or newer.
|
|
12
|
+
|
|
13
|
+
* Update vagrant-hosts dependency to 2.9.x
|
|
14
|
+
|
|
15
|
+
|
|
4
16
|
0.5.6
|
|
5
17
|
-----
|
|
6
18
|
|
data/lib/oscar.rb
CHANGED
|
@@ -3,6 +3,8 @@ module Oscar
|
|
|
3
3
|
require 'vagrant-pe_build'
|
|
4
4
|
require 'vagrant-auto_network'
|
|
5
5
|
require 'vagrant-config_builder'
|
|
6
|
+
require 'rubygems/requirement'
|
|
7
|
+
require 'vagrant-bolt' if Gem::Requirement.new('>= 2.2.0').satisfied_by?(Gem::Version.new(Vagrant::VERSION))
|
|
6
8
|
|
|
7
9
|
require 'oscar/version'
|
|
8
10
|
require 'oscar/plugin'
|
data/lib/oscar/version.rb
CHANGED
data/oscar.gemspec
CHANGED
|
@@ -19,10 +19,11 @@ Gem::Specification.new do |gem|
|
|
|
19
19
|
gem.email = ['adrien@somethingsinistral.net', 'source@sharpsteen.net']
|
|
20
20
|
gem.homepage = 'https://github.com/oscar-stack/oscar'
|
|
21
21
|
|
|
22
|
-
gem.add_dependency 'vagrant-hosts', '~> 2.
|
|
22
|
+
gem.add_dependency 'vagrant-hosts', '~> 2.9'
|
|
23
23
|
gem.add_dependency 'vagrant-pe_build', '>= 0.19.0', '< 1.0'
|
|
24
24
|
gem.add_dependency 'vagrant-auto_network', '~> 1.0'
|
|
25
25
|
gem.add_dependency 'vagrant-config_builder', '~> 1.3'
|
|
26
|
+
gem.add_dependency 'vagrant-bolt', '~> 0.1'
|
|
26
27
|
|
|
27
28
|
gem.files = %x{git ls-files -z}.split("\0")
|
|
28
29
|
gem.require_path = 'lib'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oscar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
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: 2019-
|
|
12
|
+
date: 2019-09-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: vagrant-hosts
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '2.
|
|
20
|
+
version: '2.9'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '2.
|
|
27
|
+
version: '2.9'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: vagrant-pe_build
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -73,6 +73,20 @@ dependencies:
|
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '1.3'
|
|
76
|
+
- !ruby/object:Gem::Dependency
|
|
77
|
+
name: vagrant-bolt
|
|
78
|
+
requirement: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0.1'
|
|
83
|
+
type: :runtime
|
|
84
|
+
prerelease: false
|
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.1'
|
|
76
90
|
description: |2
|
|
77
91
|
Oscar is a series of extensions to simplify building out a Puppet Enterprise
|
|
78
92
|
environment. It handles networking configuration and fetching/installing
|