puppet-resource_api 1.8.1 → 1.8.2

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
  SHA256:
3
- metadata.gz: e1490074420a43833ba41869aa9ccfe401126dd773292d8ab1998d4769c72104
4
- data.tar.gz: 54c027ce51ab65c46b30522ff1d92a7292a1e3288ab81307c410e1edefbf3d30
3
+ metadata.gz: 25188e590ac6518a9950590d7eae784c51add5ccaf2dea49a4788c2760fcb0a8
4
+ data.tar.gz: dc43fc9fb6f9f5bee6ba8584b1277add457c3c750ff33d8ba2eb1b92667bde29
5
5
  SHA512:
6
- metadata.gz: e1cabe1b8a956dcfc9e4193ee5d28ef90046972b8b503e647e1a0e96fa99371092fbd13c7d3e4caf2fe78415cbc8e568b2aebc2ae5e7e1b488bc5056227c522c
7
- data.tar.gz: 6ddb5982af07a32271a4198b29d12c1f25492f6bb45c3f431dfdf548513a4c7be11f552c7c8f8ebc660af8296b437fe60f928629a992103117b920b04387192a
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
- else
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
 
@@ -1,5 +1,5 @@
1
1
  module Puppet
2
2
  module ResourceApi
3
- VERSION = '1.8.1'.freeze
3
+ VERSION = '1.8.2'.freeze
4
4
  end
5
5
  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: 1.8.1
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-03-13 00:00:00.000000000 Z
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.