beaker-answers 0.20.0 → 0.21.0
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 +5 -13
- data/.rubocop.yml +89 -0
- data/.rubocop_todo.yml +179 -0
- data/.travis.yml +12 -0
- data/Rakefile +11 -0
- data/beaker-answers.gemspec +6 -4
- data/lib/beaker-answers/pe_conf.rb +2 -0
- data/lib/beaker-answers/version.rb +1 -1
- data/spec/beaker-answers/pe_conf_spec.rb +4 -0
- data/spec/spec_helper.rb +4 -0
- metadata +79 -48
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ZTY1OTdhMGRjNzNiZTFkMmZiNjc3M2IwNTQ2ZTVlYjYwZDc5NDBkYQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e5f91980f7ec26434a064b86c6913997e31d0b92
|
4
|
+
data.tar.gz: 6418008875e27220fbd314814ee9f7dba115344f
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
ZTRlYzhjNDBhYThlY2Q2OTQ4ZWM5NDYyNmNhMzU3Nzg0ODQ5OWMzM2FmYTRj
|
11
|
-
NjM5YWNjYmU5OTlhNjMyMmQwMGI3MzI0YTkzNzhlNjc2ZmZkNTg=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NGQ0ZGU4MzJkZWMwMmU4M2UwOWViNjkwZDI3MzQwZWY2OTI0MGJjMTc3MmQz
|
14
|
-
NmY2NzE3N2M0MDA0OGUyYmE2ZWNiNjlkMGM5NzM2ODgyYjM4NDdjYTM1OTZm
|
15
|
-
MDg1Yzg1ZTE4MmViMWZlNGY1ZGZhNGMxZTMxMzQ0MmVkZmFlMGI=
|
6
|
+
metadata.gz: fe49ebf67fd16fb2aa25b6e0f5d1967b10012dc0a642fb6ce8b2b3d6602776153eaf5f0718a3a86af721b615143a84927969f0710bc24ca856aacac3104232c4
|
7
|
+
data.tar.gz: 3db6183c4c432009aafd759a6f6efd7b9d70bb7a3c41daa1d99533da372eea0bff45d4dc6c5dc249ffc9ffab480fa9746b4fc71ad1220333057f07663d618d46
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-rspec
|
3
|
+
|
4
|
+
inherit_from: .rubocop_todo.yml
|
5
|
+
|
6
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_layout/#layoutalignhash
|
7
|
+
Layout/AlignHash:
|
8
|
+
Enabled: false
|
9
|
+
|
10
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_layout/#layoutindenthash
|
11
|
+
Layout/IndentHash:
|
12
|
+
EnforcedStyle: consistent
|
13
|
+
|
14
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_layout/#layoutindentarray
|
15
|
+
Layout/IndentArray:
|
16
|
+
EnforcedStyle: consistent
|
17
|
+
|
18
|
+
Metrics/BlockLength:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
Metrics/ClassLength:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Metrics/MethodLength:
|
25
|
+
Enabled: false
|
26
|
+
|
27
|
+
Metrics/LineLength:
|
28
|
+
Enabled: false
|
29
|
+
|
30
|
+
# Docs: http://www.rubydoc.info/gems/rubocop-rspec/1.15.0/RuboCop/Cop/RSpec/HookArgument
|
31
|
+
RSpec/HookArgument:
|
32
|
+
EnforcedStyle: each
|
33
|
+
|
34
|
+
# Docs: http://www.rubydoc.info/gems/rubocop-rspec/1.15.0/RuboCop/Cop/RSpec/NotToNot
|
35
|
+
RSpec/NotToNot:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#stylebracesaroundhashparameters
|
39
|
+
Style/BracesAroundHashParameters:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleeachwithobject
|
43
|
+
Style/EachWithObject:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleformatstring
|
47
|
+
Style/FormatString:
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleformatstringtoken
|
51
|
+
Style/FormatStringToken:
|
52
|
+
Enabled: false
|
53
|
+
|
54
|
+
# We should be consistent about what sort of hash syntax we use.
|
55
|
+
# https://github.com/puppetlabs/beaker-answers/pull/37#issuecomment-351508385
|
56
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#stylehashsyntax
|
57
|
+
Style/HashSyntax:
|
58
|
+
EnforcedStyle: hash_rockets
|
59
|
+
|
60
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleifunlessmodifier
|
61
|
+
Style/IfUnlessModifier:
|
62
|
+
Enabled: false
|
63
|
+
|
64
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleredundantexception
|
65
|
+
Style/RedundantException:
|
66
|
+
Enabled: false
|
67
|
+
|
68
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleredundantreturn
|
69
|
+
Style/RedundantReturn:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
# Enforce %r{} style for regexes
|
73
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styleregexpliteral
|
74
|
+
Style/RegexpLiteral:
|
75
|
+
EnforcedStyle: percent_r
|
76
|
+
|
77
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#stylesymbolarray
|
78
|
+
Style/SymbolArray:
|
79
|
+
Enabled: false
|
80
|
+
|
81
|
+
# Ensure a trailing comma at the end of a multiline array/hash
|
82
|
+
# https://github.com/puppetlabs/beaker-answers/pull/37#issuecomment-351508579
|
83
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#styletrailingcommainliteral
|
84
|
+
Style/TrailingCommaInLiteral:
|
85
|
+
EnforcedStyleForMultiline: consistent_comma
|
86
|
+
|
87
|
+
# Docs: https://rubocop.readthedocs.io/en/latest/cops_style/#stylewordarray
|
88
|
+
Style/WordArray:
|
89
|
+
Enabled: false
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2017-12-13 11:35:32 -0800 using RuboCop version 0.51.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 2
|
10
|
+
Lint/DuplicatedKey:
|
11
|
+
Exclude:
|
12
|
+
- 'spec/helpers.rb'
|
13
|
+
|
14
|
+
# Offense count: 5
|
15
|
+
Lint/UselessAssignment:
|
16
|
+
Exclude:
|
17
|
+
- 'lib/beaker-answers/versions/upgrade38.rb'
|
18
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
19
|
+
|
20
|
+
# Offense count: 16
|
21
|
+
Metrics/AbcSize:
|
22
|
+
Max: 113
|
23
|
+
|
24
|
+
# Offense count: 29
|
25
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
26
|
+
Metrics/BlockLength:
|
27
|
+
Max: 116
|
28
|
+
|
29
|
+
# Offense count: 2
|
30
|
+
# Configuration parameters: CountComments.
|
31
|
+
Metrics/ClassLength:
|
32
|
+
Max: 165
|
33
|
+
|
34
|
+
# Offense count: 4
|
35
|
+
Metrics/CyclomaticComplexity:
|
36
|
+
Max: 19
|
37
|
+
|
38
|
+
# Offense count: 273
|
39
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
40
|
+
# URISchemes: http, https
|
41
|
+
Metrics/LineLength:
|
42
|
+
Max: 1966
|
43
|
+
|
44
|
+
# Offense count: 23
|
45
|
+
# Configuration parameters: CountComments.
|
46
|
+
Metrics/MethodLength:
|
47
|
+
Max: 137
|
48
|
+
|
49
|
+
# Offense count: 3
|
50
|
+
Metrics/PerceivedComplexity:
|
51
|
+
Max: 20
|
52
|
+
|
53
|
+
# Offense count: 2
|
54
|
+
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
55
|
+
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
|
56
|
+
Naming/FileName:
|
57
|
+
Exclude:
|
58
|
+
- 'lib/beaker-answers.rb'
|
59
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
60
|
+
|
61
|
+
# Offense count: 2
|
62
|
+
# Cop supports --auto-correct.
|
63
|
+
# Configuration parameters: AutoCorrect.
|
64
|
+
Performance/HashEachMethods:
|
65
|
+
Exclude:
|
66
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
67
|
+
|
68
|
+
# Offense count: 18
|
69
|
+
# Configuration parameters: Prefixes.
|
70
|
+
# Prefixes: when, with, without
|
71
|
+
RSpec/ContextWording:
|
72
|
+
Exclude:
|
73
|
+
- 'spec/beaker-answers/pe_conf_spec.rb'
|
74
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
75
|
+
- 'spec/beaker-answers/versions/version20162_spec.rb'
|
76
|
+
- 'spec/beaker-answers/versions/version20163_spec.rb'
|
77
|
+
- 'spec/beaker-answers/versions/version20171_spec.rb'
|
78
|
+
- 'spec/beaker-answers/versions/version20172_spec.rb'
|
79
|
+
- 'spec/beaker-answers/versions/version20173_spec.rb'
|
80
|
+
- 'spec/shared/context.rb'
|
81
|
+
|
82
|
+
# Offense count: 4
|
83
|
+
RSpec/DescribeClass:
|
84
|
+
Exclude:
|
85
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
86
|
+
- 'spec/beaker-answers/helpers_spec.rb'
|
87
|
+
- 'spec/beaker-answers/pe_conf_spec.rb'
|
88
|
+
|
89
|
+
# Offense count: 7
|
90
|
+
# Configuration parameters: Max.
|
91
|
+
RSpec/ExampleLength:
|
92
|
+
Exclude:
|
93
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
94
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
95
|
+
|
96
|
+
# Offense count: 5
|
97
|
+
# Configuration parameters: CustomTransform, IgnoreMethods.
|
98
|
+
RSpec/FilePath:
|
99
|
+
Exclude:
|
100
|
+
- 'spec/beaker-answers/versions/version20162_spec.rb'
|
101
|
+
- 'spec/beaker-answers/versions/version20163_spec.rb'
|
102
|
+
- 'spec/beaker-answers/versions/version20171_spec.rb'
|
103
|
+
- 'spec/beaker-answers/versions/version20172_spec.rb'
|
104
|
+
- 'spec/beaker-answers/versions/version20173_spec.rb'
|
105
|
+
|
106
|
+
# Offense count: 104
|
107
|
+
# Configuration parameters: AssignmentOnly.
|
108
|
+
RSpec/InstanceVariable:
|
109
|
+
Exclude:
|
110
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
111
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
112
|
+
|
113
|
+
# Offense count: 3
|
114
|
+
# Configuration parameters: SupportedStyles.
|
115
|
+
# SupportedStyles: have_received, receive
|
116
|
+
RSpec/MessageSpies:
|
117
|
+
EnforcedStyle: receive
|
118
|
+
|
119
|
+
# Offense count: 2
|
120
|
+
RSpec/MultipleDescribes:
|
121
|
+
Exclude:
|
122
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
123
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
124
|
+
|
125
|
+
# Offense count: 24
|
126
|
+
RSpec/MultipleExpectations:
|
127
|
+
Max: 21
|
128
|
+
|
129
|
+
# Offense count: 2
|
130
|
+
RSpec/RepeatedDescription:
|
131
|
+
Exclude:
|
132
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
133
|
+
|
134
|
+
# Offense count: 2
|
135
|
+
# Configuration parameters: IgnoreSymbolicNames.
|
136
|
+
RSpec/VerifiedDoubles:
|
137
|
+
Exclude:
|
138
|
+
- 'spec/helpers.rb'
|
139
|
+
|
140
|
+
# Offense count: 1
|
141
|
+
Security/Eval:
|
142
|
+
Exclude:
|
143
|
+
- 'Gemfile'
|
144
|
+
|
145
|
+
# Offense count: 2
|
146
|
+
# Cop supports --auto-correct.
|
147
|
+
# Configuration parameters: AutoCorrect.
|
148
|
+
Security/JSONLoad:
|
149
|
+
Exclude:
|
150
|
+
- 'spec/shared/context.rb'
|
151
|
+
|
152
|
+
# Offense count: 40
|
153
|
+
Style/CaseEquality:
|
154
|
+
Exclude:
|
155
|
+
- 'spec/beaker-answers/beaker-answers_spec.rb'
|
156
|
+
- 'spec/beaker-answers/upgrade_spec.rb'
|
157
|
+
|
158
|
+
# Offense count: 2
|
159
|
+
Style/Documentation:
|
160
|
+
Exclude:
|
161
|
+
- 'spec/**/*'
|
162
|
+
- 'test/**/*'
|
163
|
+
- 'lib/beaker-answers.rb'
|
164
|
+
- 'lib/beaker-answers/answers.rb'
|
165
|
+
|
166
|
+
# Offense count: 3
|
167
|
+
# Configuration parameters: MinBodyLength.
|
168
|
+
Style/GuardClause:
|
169
|
+
Exclude:
|
170
|
+
- 'lib/beaker-answers/versions/upgrade38.rb'
|
171
|
+
- 'lib/beaker-answers/versions/version20162.rb'
|
172
|
+
|
173
|
+
# Offense count: 1
|
174
|
+
Style/MultilineTernaryOperator:
|
175
|
+
Exclude:
|
176
|
+
- 'lib/beaker-answers/pe_conf.rb'
|
177
|
+
|
178
|
+
Style/RegexpLiteral:
|
179
|
+
Enabled: false
|
data/.travis.yml
ADDED
data/Rakefile
CHANGED
@@ -1,7 +1,18 @@
|
|
1
1
|
require 'rspec/core/rake_task'
|
2
|
+
require 'rubocop/rake_task'
|
2
3
|
|
3
4
|
desc "Run spec tests"
|
4
5
|
RSpec::Core::RakeTask.new(:test) do |t|
|
5
6
|
t.rspec_opts = ['--color']
|
6
7
|
t.pattern = 'spec/'
|
7
8
|
end
|
9
|
+
|
10
|
+
RuboCop::RakeTask.new do |t|
|
11
|
+
t.options = ['--display-cop-names']
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Run linters"
|
15
|
+
task :lint => [:rubocop]
|
16
|
+
|
17
|
+
desc "Run default tasks"
|
18
|
+
task :default => [:lint, :test]
|
data/beaker-answers.gemspec
CHANGED
@@ -18,12 +18,14 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
|
20
20
|
# Testing dependencies
|
21
|
-
s.add_development_dependency 'rspec', '~> 3.0'
|
22
|
-
s.add_development_dependency 'rspec-its'
|
23
21
|
s.add_development_dependency 'fakefs', '~> 0.6'
|
24
|
-
s.add_development_dependency 'rake', '~> 10.1'
|
25
|
-
s.add_development_dependency 'simplecov'
|
26
22
|
s.add_development_dependency 'pry', '~> 0.10'
|
23
|
+
s.add_development_dependency 'rake', '~> 10.1'
|
24
|
+
s.add_development_dependency 'rspec', '~> 3.0'
|
25
|
+
s.add_development_dependency 'rspec-its'
|
26
|
+
s.add_development_dependency 'rubocop', '~> 0.50'
|
27
|
+
s.add_development_dependency 'rubocop-rspec', '~> 1.20'
|
28
|
+
s.add_development_dependency 'simplecov', '~> 0.15.0'
|
27
29
|
|
28
30
|
# Documentation dependencies
|
29
31
|
s.add_development_dependency 'yard'
|
@@ -203,6 +203,8 @@ module BeakerAnswers
|
|
203
203
|
def postgres_password_answers(pe_conf, meep_schema_version)
|
204
204
|
case meep_schema_version
|
205
205
|
when '1.0','2.0'
|
206
|
+
pe_conf["puppet_enterprise::database_ssl"] = false
|
207
|
+
pe_conf["puppet_enterprise::database_cert_auth"] = false
|
206
208
|
pe_conf["puppet_enterprise::puppetdb::start_timeout"] = 300
|
207
209
|
pe_conf["puppet_enterprise::activity_database_password"] = "PASSWORD"
|
208
210
|
pe_conf["puppet_enterprise::classifier_database_password"] = "PASSWORD"
|
@@ -109,6 +109,8 @@ describe 'BeakerAnswers::PeConf' do
|
|
109
109
|
end
|
110
110
|
let(:gold_pe_postgres_password_configuration_hash) do
|
111
111
|
{
|
112
|
+
"puppet_enterprise::database_cert_auth" => false,
|
113
|
+
"puppet_enterprise::database_ssl" => false,
|
112
114
|
"puppet_enterprise::activity_database_password" => "PASSWORD",
|
113
115
|
"puppet_enterprise::classifier_database_password" => "PASSWORD",
|
114
116
|
"puppet_enterprise::orchestrator_database_password" => "PASSWORD",
|
@@ -155,6 +157,8 @@ describe 'BeakerAnswers::PeConf' do
|
|
155
157
|
"puppet_enterprise::profile::database" => basic_hosts[1].hostname,
|
156
158
|
"agent_platforms" => ['el_6_x86_64'],
|
157
159
|
"meep_schema_version" => "2.0",
|
160
|
+
"puppet_enterprise::database_cert_auth" => false,
|
161
|
+
"puppet_enterprise::database_ssl" => false,
|
158
162
|
"puppet_enterprise::activity_database_password" => "PASSWORD",
|
159
163
|
"puppet_enterprise::classifier_database_password" => "PASSWORD",
|
160
164
|
"puppet_enterprise::orchestrator_database_password" => "PASSWORD",
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-answers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppetlabs
|
@@ -9,174 +9,202 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-01-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: fakefs
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - ~>
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '0.6'
|
21
21
|
type: :development
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - ~>
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '
|
27
|
+
version: '0.6'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
|
-
name:
|
29
|
+
name: pry
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- -
|
32
|
+
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '0'
|
34
|
+
version: '0.10'
|
35
35
|
type: :development
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- -
|
39
|
+
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: '0'
|
41
|
+
version: '0.10'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
43
|
+
name: rake
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - ~>
|
46
|
+
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
48
|
+
version: '10.1'
|
49
49
|
type: :development
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - ~>
|
53
|
+
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: '
|
55
|
+
version: '10.1'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
|
-
name:
|
57
|
+
name: rspec
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
|
-
- - ~>
|
60
|
+
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
62
|
+
version: '3.0'
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - ~>
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.0'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
71
|
+
name: rspec-its
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
|
-
- -
|
74
|
+
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- -
|
81
|
+
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '0'
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
|
-
name:
|
85
|
+
name: rubocop
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- - ~>
|
88
|
+
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: '0.
|
90
|
+
version: '0.50'
|
91
91
|
type: :development
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- - ~>
|
95
|
+
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version: '0.
|
97
|
+
version: '0.50'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: rubocop-rspec
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '1.20'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '1.20'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: simplecov
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - "~>"
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 0.15.0
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - "~>"
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 0.15.0
|
98
126
|
- !ruby/object:Gem::Dependency
|
99
127
|
name: yard
|
100
128
|
requirement: !ruby/object:Gem::Requirement
|
101
129
|
requirements:
|
102
|
-
- -
|
130
|
+
- - ">="
|
103
131
|
- !ruby/object:Gem::Version
|
104
132
|
version: '0'
|
105
133
|
type: :development
|
106
134
|
prerelease: false
|
107
135
|
version_requirements: !ruby/object:Gem::Requirement
|
108
136
|
requirements:
|
109
|
-
- -
|
137
|
+
- - ">="
|
110
138
|
- !ruby/object:Gem::Version
|
111
139
|
version: '0'
|
112
140
|
- !ruby/object:Gem::Dependency
|
113
141
|
name: markdown
|
114
142
|
requirement: !ruby/object:Gem::Requirement
|
115
143
|
requirements:
|
116
|
-
- -
|
144
|
+
- - ">="
|
117
145
|
- !ruby/object:Gem::Version
|
118
146
|
version: '0'
|
119
147
|
type: :development
|
120
148
|
prerelease: false
|
121
149
|
version_requirements: !ruby/object:Gem::Requirement
|
122
150
|
requirements:
|
123
|
-
- -
|
151
|
+
- - ">="
|
124
152
|
- !ruby/object:Gem::Version
|
125
153
|
version: '0'
|
126
154
|
- !ruby/object:Gem::Dependency
|
127
155
|
name: thin
|
128
156
|
requirement: !ruby/object:Gem::Requirement
|
129
157
|
requirements:
|
130
|
-
- -
|
158
|
+
- - ">="
|
131
159
|
- !ruby/object:Gem::Version
|
132
160
|
version: '0'
|
133
161
|
type: :development
|
134
162
|
prerelease: false
|
135
163
|
version_requirements: !ruby/object:Gem::Requirement
|
136
164
|
requirements:
|
137
|
-
- -
|
165
|
+
- - ">="
|
138
166
|
- !ruby/object:Gem::Version
|
139
167
|
version: '0'
|
140
168
|
- !ruby/object:Gem::Dependency
|
141
169
|
name: stringify-hash
|
142
170
|
requirement: !ruby/object:Gem::Requirement
|
143
171
|
requirements:
|
144
|
-
- - ~>
|
172
|
+
- - "~>"
|
145
173
|
- !ruby/object:Gem::Version
|
146
174
|
version: 0.0.0
|
147
175
|
type: :runtime
|
148
176
|
prerelease: false
|
149
177
|
version_requirements: !ruby/object:Gem::Requirement
|
150
178
|
requirements:
|
151
|
-
- - ~>
|
179
|
+
- - "~>"
|
152
180
|
- !ruby/object:Gem::Version
|
153
181
|
version: 0.0.0
|
154
182
|
- !ruby/object:Gem::Dependency
|
155
183
|
name: require_all
|
156
184
|
requirement: !ruby/object:Gem::Requirement
|
157
185
|
requirements:
|
158
|
-
- - ~>
|
186
|
+
- - "~>"
|
159
187
|
- !ruby/object:Gem::Version
|
160
188
|
version: 1.3.2
|
161
189
|
type: :runtime
|
162
190
|
prerelease: false
|
163
191
|
version_requirements: !ruby/object:Gem::Requirement
|
164
192
|
requirements:
|
165
|
-
- - ~>
|
193
|
+
- - "~>"
|
166
194
|
- !ruby/object:Gem::Version
|
167
195
|
version: 1.3.2
|
168
196
|
- !ruby/object:Gem::Dependency
|
169
197
|
name: hocon
|
170
198
|
requirement: !ruby/object:Gem::Requirement
|
171
199
|
requirements:
|
172
|
-
- - ~>
|
200
|
+
- - "~>"
|
173
201
|
- !ruby/object:Gem::Version
|
174
202
|
version: '1.0'
|
175
203
|
type: :runtime
|
176
204
|
prerelease: false
|
177
205
|
version_requirements: !ruby/object:Gem::Requirement
|
178
206
|
requirements:
|
179
|
-
- - ~>
|
207
|
+
- - "~>"
|
180
208
|
- !ruby/object:Gem::Version
|
181
209
|
version: '1.0'
|
182
210
|
description: For use for the Beaker acceptance testing tool
|
@@ -187,9 +215,12 @@ executables:
|
|
187
215
|
extensions: []
|
188
216
|
extra_rdoc_files: []
|
189
217
|
files:
|
190
|
-
- .gitignore
|
191
|
-
- .rspec
|
192
|
-
- .
|
218
|
+
- ".gitignore"
|
219
|
+
- ".rspec"
|
220
|
+
- ".rubocop.yml"
|
221
|
+
- ".rubocop_todo.yml"
|
222
|
+
- ".simplecov"
|
223
|
+
- ".travis.yml"
|
193
224
|
- Gemfile
|
194
225
|
- HISTORY.md
|
195
226
|
- LICENSE
|
@@ -244,17 +275,17 @@ require_paths:
|
|
244
275
|
- lib
|
245
276
|
required_ruby_version: !ruby/object:Gem::Requirement
|
246
277
|
requirements:
|
247
|
-
- -
|
278
|
+
- - ">="
|
248
279
|
- !ruby/object:Gem::Version
|
249
280
|
version: '0'
|
250
281
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
251
282
|
requirements:
|
252
|
-
- -
|
283
|
+
- - ">="
|
253
284
|
- !ruby/object:Gem::Version
|
254
285
|
version: '0'
|
255
286
|
requirements: []
|
256
287
|
rubyforge_project:
|
257
|
-
rubygems_version: 2.
|
288
|
+
rubygems_version: 2.5.1
|
258
289
|
signing_key:
|
259
290
|
specification_version: 4
|
260
291
|
summary: Answer generation for PE Installation!
|