puppet-resource_api 0.2.0 → 0.2.1
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.md +8 -0
- data/Gemfile +0 -1
- data/{.codecov.yml → codecov.yml} +0 -0
- data/lib/puppet/resource_api/version.rb +1 -1
- data/puppet-resource_api.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b02f63a26e3677f7c7594cb45804c97e0d1ed3d3
|
|
4
|
+
data.tar.gz: c2ae7caa5d54d368d96777e9de1abc7cbea9dfaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69f89f52c7d707dcc9fd2a49db3543e8d51be56b75bd5a9a670cb5089816e109d999474cc7cf6c53cda43c9b26b4af57e468abee9431cafe40e5ec0fcb0dc979
|
|
7
|
+
data.tar.gz: 5912f237483b41d43ce8c3e4d52baf75a85fe8d4cceaad6c4d89480de5aaf3f0a08b757fc50dafb4969726700910438e4a0907c6b913c419471700ebb169118d
|
data/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,19 @@
|
|
|
3
3
|
All significant changes to this repo will be summarized in this file.
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## [v0.2.1](https://github.com/puppetlabs/puppet-resource_api/tree/v0.2.1) (2018-01-24)
|
|
7
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v0.2.0...v0.2.1)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- gemspec fixes [\#12](https://github.com/puppetlabs/puppet-resource_api/pull/12) ([DavidS](https://github.com/DavidS))
|
|
12
|
+
|
|
6
13
|
## [v0.2.0](https://github.com/puppetlabs/puppet-resource_api/tree/v0.2.0) (2018-01-23)
|
|
7
14
|
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v0.1.0...v0.2.0)
|
|
8
15
|
|
|
9
16
|
**Implemented enhancements:**
|
|
10
17
|
|
|
18
|
+
- \(PDK-703\) Resource API introduction with pdk [\#11](https://github.com/puppetlabs/puppet-resource_api/pull/11) ([DavidS](https://github.com/DavidS))
|
|
11
19
|
- \(PDK-746\) have a SimpleProvider for simple cases [\#8](https://github.com/puppetlabs/puppet-resource_api/pull/8) ([DavidS](https://github.com/DavidS))
|
|
12
20
|
|
|
13
21
|
**Fixed bugs:**
|
data/Gemfile
CHANGED
|
File without changes
|
data/puppet-resource_api.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ['David Schmitt']
|
|
9
9
|
spec.email = ['david.schmitt@puppet.com']
|
|
10
10
|
|
|
11
|
-
spec.summary = 'This
|
|
11
|
+
spec.summary = 'This library provides a simple way to write new native resources for puppet.'
|
|
12
12
|
spec.homepage = 'https://github.com/puppetlabs/puppet-resource_api'
|
|
13
13
|
|
|
14
14
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
|
|
21
21
|
spec.add_runtime_dependency 'childprocess', '~> 0.7'
|
|
22
|
-
spec.add_runtime_dependency '
|
|
22
|
+
spec.add_runtime_dependency 'hocon', '>= 1.0'
|
|
23
23
|
|
|
24
24
|
spec.extensions = 'ext/mkrf_conf.rb'
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet-resource_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Schmitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: childprocess
|
|
@@ -25,19 +25,19 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.7'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: hocon
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '1.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '1.0'
|
|
41
41
|
description:
|
|
42
42
|
email:
|
|
43
43
|
- david.schmitt@puppet.com
|
|
@@ -46,7 +46,6 @@ extensions:
|
|
|
46
46
|
- ext/mkrf_conf.rb
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
|
-
- ".codecov.yml"
|
|
50
49
|
- ".dependency_decisions.yml"
|
|
51
50
|
- ".gitignore"
|
|
52
51
|
- ".rspec"
|
|
@@ -63,6 +62,7 @@ files:
|
|
|
63
62
|
- appveyor.yml
|
|
64
63
|
- bin/console
|
|
65
64
|
- bin/setup
|
|
65
|
+
- codecov.yml
|
|
66
66
|
- ext/mkrf_conf.rb
|
|
67
67
|
- lib/puppet/resource_api.rb
|
|
68
68
|
- lib/puppet/resource_api/base_context.rb
|
|
@@ -97,5 +97,5 @@ rubyforge_project:
|
|
|
97
97
|
rubygems_version: 2.5.2.2
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 4
|
|
100
|
-
summary: This
|
|
100
|
+
summary: This library provides a simple way to write new native resources for puppet.
|
|
101
101
|
test_files: []
|