beaker-puppet_install_helper 0.1.3 → 0.1.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 CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YmQxZWM4ODRkZTcwMjQxMDYxZWFkODhjYjlmNTA4MmU3MGU0MTllNA==
5
- data.tar.gz: !binary |-
6
- NjdkNWM2ZGQ5YzRiYzE0NTlmY2ExYmNlZDNmZjM4YmRkMmZhNzM1ZA==
2
+ SHA1:
3
+ metadata.gz: 0376a9cb849614ccc696bea9f2821d2159bc070e
4
+ data.tar.gz: 2ec31d4e30946d3ba8f5ca282bf7c8a3337cd751
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- NDNhY2MzZjQ1YWU3ODU4YjM5MTNjMjg5MGVjNDM0N2VhOTE2NmVkNzgwMjBi
10
- ZDgzZWM2MjQ4MGIzNGRjNGFhMzQ1NWJhZGNlMDE0NTY3YzI3ZGQzNWU0ZTcy
11
- MjcxZTc0OGQ2NzRmMzNjMTE3ODU4ZTBiMGM3ZTg5YTY2NzRhY2U=
12
- data.tar.gz: !binary |-
13
- ZTMzYmM1N2I2MjBkOGRmYWU1ZDkxZWI1Y2U3OTJmODA1NTZhMGI2ZGYwZjc0
14
- ODI2YWFhMjBjNTE3MzI0OTE4YTc1NWQ3YmUxNDdhN2ViYTdjOTBlZGIxYjMw
15
- ZGI3YTFmMmJiNTU1MGY2YjA0ZDU1MDk1OWQyMDE1OGExMGFlMGM=
6
+ metadata.gz: c6af92cf4c1d96602e2bfc6fdf8e0c49c44ace7a904777b1f9b5334edd58d203950ac590e5f7f5534120413a9dbd192a77affe34262a2b8dd0672641dd94f151
7
+ data.tar.gz: 514f7dcb29d92dfee33ab9430d08f21f1ad62871ace54d310a88e8a1dc0bbcb084f97bf0b11372c3900b7051031a252140ad14067bc84c8edd041e34da24a947
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "beaker-puppet_install_helper"
3
- s.version = '0.1.3'
3
+ s.version = '0.1.4'
4
4
  s.authors = ["Puppetlabs"]
5
5
  s.email = ["hunter@puppetlabs.com"]
6
6
  s.homepage = "https://github.com/puppetlabs/beaker-puppet_install_helper"
@@ -2,7 +2,7 @@ require 'beaker'
2
2
 
3
3
  module Beaker::PuppetInstallHelper
4
4
  def run_puppet_install_helper(type_arg=find_install_type,version=ENV["PUPPET_VERSION"])
5
- run_puppet_install_helper_on(default,type_arg,version)
5
+ run_puppet_install_helper_on(hosts,type_arg,version)
6
6
  end
7
7
 
8
8
  # Takes a host(s) object, install type string, and install version string.
@@ -28,12 +28,12 @@ describe 'beaker::puppet_install_helper' do
28
28
  allow(subject).to receive(:default).and_return(hosts[0])
29
29
  end
30
30
  it 'calls run_puppet_install_helper_on on each host' do
31
- expect(subject).to receive(:run_puppet_install_helper_on).with(hosts[0],"foss",nil)
31
+ expect(subject).to receive(:run_puppet_install_helper_on).with(hosts,"foss",nil)
32
32
  subject.run_puppet_install_helper
33
33
  end
34
34
  it 'calls run_puppet_install_helper_on on each host with a version ' do
35
35
  ENV["PUPPET_VERSION"] = "4.1.0"
36
- expect(subject).to receive(:run_puppet_install_helper_on).with(hosts[0],"foss","4.1.0")
36
+ expect(subject).to receive(:run_puppet_install_helper_on).with(hosts,"foss","4.1.0")
37
37
  subject.run_puppet_install_helper
38
38
  end
39
39
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-puppet_install_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
@@ -14,28 +14,28 @@ dependencies:
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: beaker
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '2.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
40
  version: '2.0'
41
41
  description: Puppet install helper for Beaker, see https://github.com/puppetlabs/beaker
@@ -45,8 +45,8 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - .gitignore
49
- - .travis.yml
48
+ - ".gitignore"
49
+ - ".travis.yml"
50
50
  - Gemfile
51
51
  - README.md
52
52
  - beaker-puppet_install_helper.gemspec
@@ -63,21 +63,20 @@ require_paths:
63
63
  - lib
64
64
  required_ruby_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
- - - ! '>='
71
+ - - ">="
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubyforge_project:
76
- rubygems_version: 2.4.5
76
+ rubygems_version: 2.4.8
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Puppet install helper for Beaker
80
80
  test_files:
81
81
  - spec/spec_helper.rb
82
82
  - spec/unit/beaker/puppet_install_helper_spec.rb
83
- has_rdoc: