vagrant-serverspec 1.3 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/gempush.yml +44 -0
- data/CHANGELOG.md +11 -3
- data/Gemfile +1 -1
- data/README.md +15 -9
- data/lib/vagrant-serverspec/config.rb +19 -0
- data/lib/vagrant-serverspec/error.rb +6 -0
- data/lib/vagrant-serverspec/provisioner.rb +28 -18
- data/lib/vagrant-serverspec/version.rb +1 -1
- data/locales/en.yml +8 -0
- data/vagrant-serverspec.gemspec +9 -7
- metadata +71 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6742e2f67f9975d5027624b532d84f56be16237ae5238805a500e3b13642cfcb
|
4
|
+
data.tar.gz: ddab6b8b957b722321a17b972fbaf13cf56d86943f76ad3ba31a675b63a7ab15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d3ae794506a7fc4aa76e457ebb4cda3ea357cc8a437d88481c726f3fc74a7ab26c5ad7616c8a553edaa43dc8a0b284fd88bbdaff78a9c9e01c6e55af784c319
|
7
|
+
data.tar.gz: 72ad50d5b9d59222ae2d06cd1d5a1d61f0b0116b30606295115ea831aa034948ac9b61da4b4287225bc78c634331e24a089033b534a1a79b0fe9045dcebaea3b
|
@@ -0,0 +1,44 @@
|
|
1
|
+
name: Ruby Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
#pull_request:
|
5
|
+
# branches:
|
6
|
+
# - master
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
build:
|
13
|
+
name: Build + Publish
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@master
|
18
|
+
- name: Set up Ruby 2.6
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
version: 2.6.x
|
22
|
+
|
23
|
+
# - name: Publish to GPR
|
24
|
+
# run: |
|
25
|
+
# mkdir -p $HOME/.gem
|
26
|
+
# touch $HOME/.gem/credentials
|
27
|
+
# chmod 0600 $HOME/.gem/credentials
|
28
|
+
# printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
29
|
+
# gem build *.gemspec
|
30
|
+
# gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
31
|
+
# env:
|
32
|
+
# GEM_HOST_API_KEY: ${{secrets.GPR_AUTH_TOKEN}}
|
33
|
+
# OWNER: username
|
34
|
+
|
35
|
+
- name: Publish to RubyGems
|
36
|
+
run: |
|
37
|
+
mkdir -p $HOME/.gem
|
38
|
+
touch $HOME/.gem/credentials
|
39
|
+
chmod 0600 $HOME/.gem/credentials
|
40
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
41
|
+
gem build *.gemspec
|
42
|
+
gem push *.gem
|
43
|
+
env:
|
44
|
+
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
-
###
|
2
|
-
|
1
|
+
### v 1.5.0 Nov 25, 2019
|
2
|
+
* Add a new junit formatter
|
3
3
|
|
4
|
+
### v 1.4.0 Nov 1, 2019 (not released)
|
5
|
+
* Fix vagrant-serverspec dependencies to work with Vagrant 2.2.6
|
6
|
+
|
7
|
+
### v 1.3.0 Sep 24, 2017
|
8
|
+
* Add new options 'error_no_spec_files' to avoid error when no rspec conf files was found
|
9
|
+
|
10
|
+
### v 1.2.0 Mar 27, 2017
|
11
|
+
* Provide compatibility with vagrant 1.9.2
|
4
12
|
* Updated .gemspec to the recommended winrm version 2.x
|
5
13
|
* Updated WinRM::Connection instead of WinRM::WebService
|
6
|
-
* Updated `WINDOWS_README.md`
|
14
|
+
* Updated `WINDOWS_README.md`
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -48,6 +48,10 @@ Vagrant.configure('2') do |config|
|
|
48
48
|
spec.error_no_spec_files = false
|
49
49
|
# save result into html an report, saved into a 'rspec_html_reports' directory. Default: false
|
50
50
|
spec.html_output = true
|
51
|
+
# save result into junit xml report, default file name is 'rspec.xml'
|
52
|
+
spec.junit_output = true
|
53
|
+
# set custom junit xml report file name
|
54
|
+
spec.junit_output_file = 'junit.xml'
|
51
55
|
end
|
52
56
|
end
|
53
57
|
```
|
@@ -85,7 +89,7 @@ end
|
|
85
89
|
```
|
86
90
|
|
87
91
|
##Testing Docker Containers on OSX
|
88
|
-
On OSX the Vagrant docker provider runs a Boot2Docker VM, then launches your docker container on that VM. Vagrant does SSH Proxying to send the commands through that VM and have them reach the Docker Container. Vagrant serverspec handles this the same way by getting the container host VM infromation and proxying the commands to the machine through an SSH Proxy. This functionality was introduced in this [PR](https://github.com/
|
92
|
+
On OSX the Vagrant docker provider runs a Boot2Docker VM, then launches your docker container on that VM. Vagrant does SSH Proxying to send the commands through that VM and have them reach the Docker Container. Vagrant serverspec handles this the same way by getting the container host VM infromation and proxying the commands to the machine through an SSH Proxy. This functionality was introduced in this [PR](https://github.com/vvchik/vagrant-serverspec/pull/17)
|
89
93
|
|
90
94
|
## Additional informations
|
91
95
|
|
@@ -95,14 +99,14 @@ SSH connection is closed before each provision run.
|
|
95
99
|
This is mandatory if the provision is applied to multiple vms in the same run,
|
96
100
|
else all runs will be applied to the first vm (See #22) due to an SSH
|
97
101
|
connection which already exists.
|
98
|
-
This functionality was introduced in this [PR](https://github.com/
|
102
|
+
This functionality was introduced in this [PR](https://github.com/vvchik/vagrant-serverspec/pull/23)
|
99
103
|
|
100
104
|
### Server spec examples
|
101
105
|
|
102
106
|
RSpec examples are clear before each provision run.
|
103
107
|
This is mandatory if the provision is applied to multiple vms in the same run,
|
104
108
|
else each run replay examples of previous calls also.
|
105
|
-
This functionality was introduced in this [PR](https://github.com/
|
109
|
+
This functionality was introduced in this [PR](https://github.com/vvchik/vagrant-serverspec/pull/23)
|
106
110
|
|
107
111
|
### In case of shared examples
|
108
112
|
|
@@ -130,8 +134,9 @@ example:
|
|
130
134
|
|
131
135
|
## Authors
|
132
136
|
|
133
|
-
|
134
|
-
|
137
|
+
Original Idea [Jeremy Voorhis][jvoorhis] (<jvoorhis@gmail.com>).
|
138
|
+
Current version author and maintainer [Vladimir Babchynskyy][vvchik] (<vvchik@gmail.com>)
|
139
|
+
and a growing community of [contributors][contributors].
|
135
140
|
|
136
141
|
## License
|
137
142
|
|
@@ -141,10 +146,11 @@ MIT license (see [LICENSE][license])
|
|
141
146
|
[serverspec]: http://serverspec.org
|
142
147
|
[semver]: http://semver.org/
|
143
148
|
|
144
|
-
[repo]: https://github.com/
|
145
|
-
[issues]: https://github.com/
|
149
|
+
[repo]: https://github.com/vvchik/vagrant-serverspec
|
150
|
+
[issues]: https://github.com/vvchik/vagrant-serverspec/issues
|
146
151
|
|
147
152
|
[jvoorhis]: https://github.com/jvoorhis
|
148
|
-
[
|
153
|
+
[vvchik]: https://github.com/vvchik
|
154
|
+
[contributors]: https://github.com/vvchik/vagrant-serverspec/graphs/contributors
|
149
155
|
|
150
|
-
[license]: https://github.com/
|
156
|
+
[license]: https://github.com/vvchik/vagrant-serverspec/blob/master/LICENSE
|
@@ -5,12 +5,17 @@ module VagrantPlugins
|
|
5
5
|
attr_accessor :spec_pattern
|
6
6
|
attr_accessor :error_no_spec_files_found
|
7
7
|
attr_accessor :html_output_format
|
8
|
+
attr_accessor :junit_output_format
|
9
|
+
attr_accessor :junit_output_format_file_name
|
10
|
+
|
8
11
|
|
9
12
|
def initialize
|
10
13
|
super
|
11
14
|
@spec_files = UNSET_VALUE
|
12
15
|
@html_output_format = UNSET_VALUE
|
13
16
|
@error_no_spec_files_found = UNSET_VALUE
|
17
|
+
@junit_output_format = UNSET_VALUE
|
18
|
+
@junit_output_format_file_name = UNSET_VALUE
|
14
19
|
end
|
15
20
|
|
16
21
|
def pattern=(pat)
|
@@ -30,10 +35,24 @@ module VagrantPlugins
|
|
30
35
|
end
|
31
36
|
end
|
32
37
|
|
38
|
+
def junit_output=(junit_out)
|
39
|
+
if [true, false].include? junit_out
|
40
|
+
@junit_output_format = junit_out
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def junit_output_file=(junit_out_file)
|
45
|
+
if junit_out_file.end_with?(".xml")
|
46
|
+
@junit_output_format_file_name = junit_out_file
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
33
50
|
def finalize!
|
34
51
|
@spec_files = [] if @spec_files == UNSET_VALUE
|
35
52
|
@html_output_format = false if @html_output_format == UNSET_VALUE
|
36
53
|
@error_no_spec_files_found = true if @error_no_spec_files_found == UNSET_VALUE
|
54
|
+
@junit_output_format = false if @junit_output_format == UNSET_VALUE
|
55
|
+
@junit_output_format_file_name = false if @junit_output_format_file_name == UNSET_VALUE
|
37
56
|
end
|
38
57
|
|
39
58
|
def validate(machine)
|
@@ -6,6 +6,12 @@ module Vagrant
|
|
6
6
|
class ServerSpecFailedHtml < VagrantError
|
7
7
|
error_key(:serverspec_failed_html)
|
8
8
|
end
|
9
|
+
class ServerSpecFailedHtmlJunit < VagrantError
|
10
|
+
error_key(:serverspec_failed_html_junit)
|
11
|
+
end
|
12
|
+
class ServerSpecFailedJunit < VagrantError
|
13
|
+
error_key(:serverspec_failed_junit)
|
14
|
+
end
|
9
15
|
class ServerSpecFilesNotFound < VagrantError
|
10
16
|
error_key(:serverspec_filesnotfound)
|
11
17
|
end
|
@@ -71,29 +71,40 @@ module VagrantPlugins
|
|
71
71
|
@spec_files = Dir.glob(@spec_pattern)
|
72
72
|
raise Vagrant::Errors::ServerSpecFilesNotFound if @spec_files.length == 0 and @error_no_spec_files_found
|
73
73
|
|
74
|
-
|
74
|
+
RSpec.configure do |rconfig|
|
75
75
|
require 'json'
|
76
76
|
require 'rspec'
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
77
|
+
|
78
|
+
if config.html_output_format
|
79
|
+
require 'rspec_html_formatter'
|
80
|
+
|
81
|
+
rconfig.add_formatter "RspecHtmlFormatter"
|
82
|
+
end
|
83
|
+
|
84
|
+
if config.junit_output_format
|
85
|
+
require 'rspec_junit_formatter'
|
86
|
+
|
87
|
+
if config.junit_output_format_file_name
|
88
|
+
file_name = config.junit_output_format_file_name
|
89
|
+
else
|
90
|
+
file_name = 'rspec.xml'
|
91
|
+
end
|
92
|
+
|
93
|
+
rconfig.add_formatter "RSpecJUnitFormatter", file_name
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
status = RSpec::Core::Runner.run(@spec_files)
|
98
|
+
if config.html_output_format && config.junit_output_format
|
99
|
+
raise Vagrant::Errors::ServerSpecFailedHtmlJunit if status != 0
|
100
|
+
elsif config.html_output_format
|
91
101
|
raise Vagrant::Errors::ServerSpecFailedHtml if status != 0
|
102
|
+
elsif config.junit_output_format
|
103
|
+
raise Vagrant::Errors::ServerSpecFailedJunit if status != 0
|
92
104
|
else
|
93
|
-
status = RSpec::Core::Runner.run(@spec_files)
|
94
105
|
raise Vagrant::Errors::ServerSpecFailed if status != 0
|
95
106
|
end
|
96
|
-
|
107
|
+
|
97
108
|
end
|
98
109
|
|
99
110
|
private
|
@@ -129,4 +140,3 @@ module VagrantPlugins
|
|
129
140
|
end
|
130
141
|
end
|
131
142
|
end
|
132
|
-
|
data/locales/en.yml
CHANGED
@@ -15,5 +15,13 @@ en:
|
|
15
15
|
ServerSpec failed to complete successfully. Any error output should be
|
16
16
|
visible above. Please fix these errors and try again. Please look into 'rspec_html_reports'
|
17
17
|
directory to see errors into 'overview.html' file
|
18
|
+
serverspec_failed_html_junit: |-
|
19
|
+
ServerSpec failed to complete successfully. Any error output should be
|
20
|
+
visible above. Please fix these errors and try again. Please look into 'rspec_html_reports'
|
21
|
+
directory into 'overview.html' file or 'rspec.xml' file to see errors
|
22
|
+
serverspec_failed_junit: |-
|
23
|
+
ServerSpec failed to complete successfully. Any error output should be
|
24
|
+
visible above. Please fix these errors and try again. Please look into
|
25
|
+
'rspec.xml' file to see errors
|
18
26
|
serverspec_filesnotfound: |-
|
19
27
|
ServerSpec failed to find any spec files.
|
data/vagrant-serverspec.gemspec
CHANGED
@@ -4,10 +4,10 @@ require 'vagrant-serverspec/version'
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'vagrant-serverspec'
|
7
|
-
gem.homepage = 'https://github.com/
|
7
|
+
gem.homepage = 'https://github.com/vvchik/vagrant-serverspec'
|
8
8
|
gem.version = VagrantPlugins::ServerSpec::VERSION
|
9
|
-
gem.authors = ['Jeremy Voorhis']
|
10
|
-
gem.email = ['
|
9
|
+
gem.authors = ['Jeremy Voorhis', 'Vladimir Babchynskyy', 'community contributors: https://github.com/vvchik/vagrant-serverspec/graphs/contributors']
|
10
|
+
gem.email = ['vvchik@gmail.com']
|
11
11
|
gem.summary = %q{A Vagrant plugin that executes serverspec}
|
12
12
|
gem.description = "vagrant-serverspec is a Vagrant plugin that integrates serverspec into your workflow."
|
13
13
|
gem.license = 'MIT'
|
@@ -17,12 +17,14 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.require_paths = ['lib']
|
18
18
|
|
19
19
|
gem.add_runtime_dependency 'serverspec', '~> 2.30', '>= 2.30'
|
20
|
-
|
21
|
-
#add
|
20
|
+
|
21
|
+
#add only dependencies for winrm without nokogiri
|
22
22
|
gem.add_runtime_dependency 'winrm', '~> 2.1', '>= 2.1'
|
23
23
|
gem.add_runtime_dependency 'os', '~> 0.9.6'
|
24
24
|
gem.add_runtime_dependency 'rspec_html_formatter', '~> 0.3', '>= 0.3.1'
|
25
|
-
|
26
|
-
gem.
|
25
|
+
gem.add_runtime_dependency 'rspec_junit_formatter', '~> 0.4'
|
26
|
+
gem.add_runtime_dependency 'activesupport', '~> 5.2.3', '>= 5.2'
|
27
|
+
|
28
|
+
gem.add_development_dependency 'bundler', '~> 1.17.3', '>= 1.17'
|
27
29
|
gem.add_development_dependency 'rake', '~> 10.3', '>= 10.3.2'
|
28
30
|
end
|
metadata
CHANGED
@@ -1,138 +1,175 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-serverspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Voorhis
|
8
|
+
- Vladimir Babchynskyy
|
9
|
+
- 'community contributors: https://github.com/vvchik/vagrant-serverspec/graphs/contributors'
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date:
|
13
|
+
date: 2020-01-20 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: serverspec
|
15
17
|
requirement: !ruby/object:Gem::Requirement
|
16
18
|
requirements:
|
17
|
-
- -
|
19
|
+
- - ">="
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: '2.30'
|
20
|
-
- -
|
22
|
+
- - "~>"
|
21
23
|
- !ruby/object:Gem::Version
|
22
24
|
version: '2.30'
|
23
25
|
type: :runtime
|
24
26
|
prerelease: false
|
25
27
|
version_requirements: !ruby/object:Gem::Requirement
|
26
28
|
requirements:
|
27
|
-
- -
|
29
|
+
- - ">="
|
28
30
|
- !ruby/object:Gem::Version
|
29
31
|
version: '2.30'
|
30
|
-
- -
|
32
|
+
- - "~>"
|
31
33
|
- !ruby/object:Gem::Version
|
32
34
|
version: '2.30'
|
33
35
|
- !ruby/object:Gem::Dependency
|
34
36
|
name: winrm
|
35
37
|
requirement: !ruby/object:Gem::Requirement
|
36
38
|
requirements:
|
37
|
-
- -
|
39
|
+
- - ">="
|
38
40
|
- !ruby/object:Gem::Version
|
39
41
|
version: '2.1'
|
40
|
-
- -
|
42
|
+
- - "~>"
|
41
43
|
- !ruby/object:Gem::Version
|
42
44
|
version: '2.1'
|
43
45
|
type: :runtime
|
44
46
|
prerelease: false
|
45
47
|
version_requirements: !ruby/object:Gem::Requirement
|
46
48
|
requirements:
|
47
|
-
- -
|
49
|
+
- - ">="
|
48
50
|
- !ruby/object:Gem::Version
|
49
51
|
version: '2.1'
|
50
|
-
- -
|
52
|
+
- - "~>"
|
51
53
|
- !ruby/object:Gem::Version
|
52
54
|
version: '2.1'
|
53
55
|
- !ruby/object:Gem::Dependency
|
54
56
|
name: os
|
55
57
|
requirement: !ruby/object:Gem::Requirement
|
56
58
|
requirements:
|
57
|
-
- - ~>
|
59
|
+
- - "~>"
|
58
60
|
- !ruby/object:Gem::Version
|
59
61
|
version: 0.9.6
|
60
62
|
type: :runtime
|
61
63
|
prerelease: false
|
62
64
|
version_requirements: !ruby/object:Gem::Requirement
|
63
65
|
requirements:
|
64
|
-
- - ~>
|
66
|
+
- - "~>"
|
65
67
|
- !ruby/object:Gem::Version
|
66
68
|
version: 0.9.6
|
67
69
|
- !ruby/object:Gem::Dependency
|
68
70
|
name: rspec_html_formatter
|
69
71
|
requirement: !ruby/object:Gem::Requirement
|
70
72
|
requirements:
|
71
|
-
- - ~>
|
73
|
+
- - "~>"
|
72
74
|
- !ruby/object:Gem::Version
|
73
75
|
version: '0.3'
|
74
|
-
- -
|
76
|
+
- - ">="
|
75
77
|
- !ruby/object:Gem::Version
|
76
78
|
version: 0.3.1
|
77
79
|
type: :runtime
|
78
80
|
prerelease: false
|
79
81
|
version_requirements: !ruby/object:Gem::Requirement
|
80
82
|
requirements:
|
81
|
-
- - ~>
|
83
|
+
- - "~>"
|
82
84
|
- !ruby/object:Gem::Version
|
83
85
|
version: '0.3'
|
84
|
-
- -
|
86
|
+
- - ">="
|
85
87
|
- !ruby/object:Gem::Version
|
86
88
|
version: 0.3.1
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: rspec_junit_formatter
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0.4'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0.4'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: activesupport
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '5.2'
|
110
|
+
- - "~>"
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 5.2.3
|
113
|
+
type: :runtime
|
114
|
+
prerelease: false
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '5.2'
|
120
|
+
- - "~>"
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 5.2.3
|
87
123
|
- !ruby/object:Gem::Dependency
|
88
124
|
name: bundler
|
89
125
|
requirement: !ruby/object:Gem::Requirement
|
90
126
|
requirements:
|
91
|
-
- -
|
127
|
+
- - ">="
|
92
128
|
- !ruby/object:Gem::Version
|
93
|
-
version: '1.
|
94
|
-
- -
|
129
|
+
version: '1.17'
|
130
|
+
- - "~>"
|
95
131
|
- !ruby/object:Gem::Version
|
96
|
-
version: 1.
|
132
|
+
version: 1.17.3
|
97
133
|
type: :development
|
98
134
|
prerelease: false
|
99
135
|
version_requirements: !ruby/object:Gem::Requirement
|
100
136
|
requirements:
|
101
|
-
- -
|
137
|
+
- - ">="
|
102
138
|
- !ruby/object:Gem::Version
|
103
|
-
version: '1.
|
104
|
-
- -
|
139
|
+
version: '1.17'
|
140
|
+
- - "~>"
|
105
141
|
- !ruby/object:Gem::Version
|
106
|
-
version: 1.
|
142
|
+
version: 1.17.3
|
107
143
|
- !ruby/object:Gem::Dependency
|
108
144
|
name: rake
|
109
145
|
requirement: !ruby/object:Gem::Requirement
|
110
146
|
requirements:
|
111
|
-
- - ~>
|
147
|
+
- - "~>"
|
112
148
|
- !ruby/object:Gem::Version
|
113
149
|
version: '10.3'
|
114
|
-
- -
|
150
|
+
- - ">="
|
115
151
|
- !ruby/object:Gem::Version
|
116
152
|
version: 10.3.2
|
117
153
|
type: :development
|
118
154
|
prerelease: false
|
119
155
|
version_requirements: !ruby/object:Gem::Requirement
|
120
156
|
requirements:
|
121
|
-
- - ~>
|
157
|
+
- - "~>"
|
122
158
|
- !ruby/object:Gem::Version
|
123
159
|
version: '10.3'
|
124
|
-
- -
|
160
|
+
- - ">="
|
125
161
|
- !ruby/object:Gem::Version
|
126
162
|
version: 10.3.2
|
127
163
|
description: vagrant-serverspec is a Vagrant plugin that integrates serverspec into
|
128
164
|
your workflow.
|
129
165
|
email:
|
130
|
-
-
|
166
|
+
- vvchik@gmail.com
|
131
167
|
executables: []
|
132
168
|
extensions: []
|
133
169
|
extra_rdoc_files: []
|
134
170
|
files:
|
135
|
-
- .
|
171
|
+
- ".github/workflows/gempush.yml"
|
172
|
+
- ".gitignore"
|
136
173
|
- CHANGELOG.md
|
137
174
|
- Gemfile
|
138
175
|
- LICENSE
|
@@ -160,7 +197,7 @@ files:
|
|
160
197
|
- test/windows/spec_helper.rb
|
161
198
|
- test/windows/vagrantfile
|
162
199
|
- vagrant-serverspec.gemspec
|
163
|
-
homepage: https://github.com/
|
200
|
+
homepage: https://github.com/vvchik/vagrant-serverspec
|
164
201
|
licenses:
|
165
202
|
- MIT
|
166
203
|
metadata: {}
|
@@ -170,17 +207,16 @@ require_paths:
|
|
170
207
|
- lib
|
171
208
|
required_ruby_version: !ruby/object:Gem::Requirement
|
172
209
|
requirements:
|
173
|
-
- -
|
210
|
+
- - ">="
|
174
211
|
- !ruby/object:Gem::Version
|
175
212
|
version: '0'
|
176
213
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
214
|
requirements:
|
178
|
-
- -
|
215
|
+
- - ">="
|
179
216
|
- !ruby/object:Gem::Version
|
180
217
|
version: '0'
|
181
218
|
requirements: []
|
182
|
-
|
183
|
-
rubygems_version: 2.0.14.1
|
219
|
+
rubygems_version: 3.0.3
|
184
220
|
signing_key:
|
185
221
|
specification_version: 4
|
186
222
|
summary: A Vagrant plugin that executes serverspec
|