puppet-resource_api 1.8.1 → 1.8.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +10 -2
- data/README.md +1 -0
- data/lib/puppet/resource_api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25188e590ac6518a9950590d7eae784c51add5ccaf2dea49a4788c2760fcb0a8
|
4
|
+
data.tar.gz: dc43fc9fb6f9f5bee6ba8584b1277add457c3c750ff33d8ba2eb1b92667bde29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b7a893bcf2ffcdd4b36c6c741c9d98b0c648a1f49456496d3f34ff37061f779f0748508c23bdeda13a6139f1b5c01b611d6097eb3455aebbcb2a23c54299e8b
|
7
|
+
data.tar.gz: 3ac4e6f47d675dc87722afb75f363519e747727802d02e9d1ec48a2b31d4af02f7b6cc89847ba6f3b5d93760007684abc0efe1a1ba07e43435df1657f1814da7
|
data/Gemfile
CHANGED
@@ -12,13 +12,21 @@ group :tests do
|
|
12
12
|
gem 'license_finder' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.4.0')
|
13
13
|
gem 'rake', '~> 10.0'
|
14
14
|
gem 'rspec', '~> 3.0'
|
15
|
-
gem 'rubocop-rspec'
|
16
15
|
# rubocop 0.58 throws when testing against ruby 2.1, so pin to the latest,
|
17
16
|
# unless we're dealing with jruby...
|
18
17
|
if RUBY_PLATFORM == 'java'
|
18
|
+
# load any rubocop version that works on java for the Rakefile
|
19
19
|
gem 'rubocop'
|
20
|
-
|
20
|
+
elsif Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.0')
|
21
21
|
gem 'rubocop', '0.57.2'
|
22
|
+
# the last version of parallel to support ruby 2.1
|
23
|
+
gem 'parallel', '1.13.0'
|
24
|
+
gem 'rubocop-rspec'
|
25
|
+
else
|
26
|
+
# 2.1-compatible analysis was dropped after version 0.58
|
27
|
+
# This needs to be removed once we drop puppet4 support.
|
28
|
+
gem 'rubocop', '~> 0.57.0'
|
29
|
+
gem 'rubocop-rspec'
|
22
30
|
end
|
23
31
|
gem 'simplecov-console'
|
24
32
|
# the test gems required for module testing
|
data/README.md
CHANGED
@@ -261,6 +261,7 @@ The following keywords are keywords that must not be used by the transport schem
|
|
261
261
|
* `run-on` - This is used by bolt to determine which target to proxy to. Transports should not rely on this key.
|
262
262
|
* `remote-transport` - This is used to determine which transport to load. It should always be the transport class name "declassified".
|
263
263
|
* `remote-*` Any key starting with `remote-` is reserved for future use.
|
264
|
+
* `implementations`: reserved by bolt
|
264
265
|
|
265
266
|
Note: Currently bolt inventory requires that a name be set for every target and always uses that name as the URI. This means there is no way to specify `host` separately from the host section of the `name` when parsed as a URI.
|
266
267
|
|
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: 1.8.
|
4
|
+
version: 1.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Schmitt
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hocon
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
90
|
rubyforge_project:
|
91
|
-
rubygems_version: 2.7.6
|
91
|
+
rubygems_version: 2.7.6.2
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: This library provides a simple way to write new native resources for puppet.
|