puppet-resource_api 1.6.3 → 1.6.4
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/.travis.yml +10 -2
- data/Gemfile +10 -2
- data/README.md +0 -6
- data/lib/puppet/resource_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf451ef613e1041859eb390fe112577c9ac7cda85b5e68f3f2ca8cc26b88faa2
|
|
4
|
+
data.tar.gz: 1627bf1b0fe98460eb6e627cab47fd5b0184ecc2fabaa8a81b2a4f04ac55615f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38306bd46fdc4e19c1d6e094b44009aa7014f4f107eca7919b785618d261d75053812618a6b840d028ad650afca5170298e243258e2a4649a05a41cea4af140e
|
|
7
|
+
data.tar.gz: 3bbe35aebff424e7277fe0f94f701782d008e991165c2847ebff7d0ad9d8cff7fd92dc39a3da7c6e537833ef1ed88ecb924968e925fb03d3c218ef54caaf2bd1
|
data/.travis.yml
CHANGED
|
@@ -28,9 +28,9 @@ matrix:
|
|
|
28
28
|
bundler: true
|
|
29
29
|
directories: ~/.rvm
|
|
30
30
|
before_install: rvm use jruby-9.1.9.0 --install --binary --fuzzy
|
|
31
|
-
- rvm: 2.
|
|
31
|
+
- rvm: 2.5.1
|
|
32
32
|
env: CHECK=rubocop
|
|
33
|
-
- rvm: 2.
|
|
33
|
+
- rvm: 2.5.1
|
|
34
34
|
env: CHECK=license_finder
|
|
35
35
|
bundler_args: ""
|
|
36
36
|
|
|
@@ -52,10 +52,18 @@ matrix:
|
|
|
52
52
|
env: PUPPET_GEM_VERSION='~> 4.8.0'
|
|
53
53
|
- rvm: 2.1.9
|
|
54
54
|
env: PUPPET_GEM_VERSION='~> 4.7.0'
|
|
55
|
+
- rvm: 2.5.1
|
|
56
|
+
env: PUPPET_GEM_VERSION='~> 6' # 6.0, soon 6.1
|
|
57
|
+
- rvm: 2.5.1
|
|
58
|
+
env: PUPPET_GEM_VERSION='~> 6.0'
|
|
55
59
|
- rvm: 2.5.1
|
|
56
60
|
env: PUPPET_GEM_VERSION='https://github.com/puppetlabs/puppet.git#master'
|
|
57
61
|
- rvm: 2.5.1
|
|
58
62
|
env: PUPPET_GEM_VERSION='https://github.com/puppetlabs/puppet.git#6.0.x'
|
|
63
|
+
- rvm: 2.4.3
|
|
64
|
+
env: PUPPET_GEM_VERSION='https://github.com/puppetlabs/puppet.git#5.5.x'
|
|
65
|
+
- rvm: 2.1.9
|
|
66
|
+
env: PUPPET_GEM_VERSION='https://github.com/puppetlabs/puppet.git#4.10.x'
|
|
59
67
|
notifications:
|
|
60
68
|
hipchat:
|
|
61
69
|
rooms:
|
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
|
@@ -231,12 +231,6 @@ Future possibilities:
|
|
|
231
231
|
* [Multiple Providers](https://tickets.puppetlabs.com/browse/PDK-530)
|
|
232
232
|
* [Commands API](https://tickets.puppetlabs.com/browse/PDK-847)
|
|
233
233
|
|
|
234
|
-
## Development
|
|
235
|
-
|
|
236
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
237
|
-
|
|
238
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
239
|
-
|
|
240
234
|
## Contributing
|
|
241
235
|
|
|
242
236
|
Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/puppet-resource_api.
|