beaker 5.0.0 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a779fedc9b7695d5a76a9731765e8ed5c5b8f9f1945563c2108cd0d0e01f564a
4
- data.tar.gz: d5613d1aa5a289aff25f948229f5d8c89bec28fa25ec6ae310f446e95dd44363
3
+ metadata.gz: 5ed6c6126f85203546e505eb1c8b8770582c303c11db2ab209e6cd1f03414fe5
4
+ data.tar.gz: f007b424a8e1a4097c5704a5f009ec5d38c69e55535c4a40618eabf57e69637b
5
5
  SHA512:
6
- metadata.gz: 33dae1fd1af4921f1fd3f00e18413a1a823749444fbed1c1fae0ed967cf055988a31692ceba29d5535bba8b1283f0b6ec0535cf21b589ecfc9f55c0d6498f51b
7
- data.tar.gz: 8ccefb72d40022e47506fdd6ab8307318fbcd3eb736f89f965368de923e65b52e14a3faac8ea4afcb7aad3d3c80e059a9ce665578d18f32c01ff073675b75387
6
+ metadata.gz: 646c6603a729bbe62a91365a7c90c3de1a960517e0a8b036076ba9f6705b7971ab630f5d86a1ce2a3d690094459c2730e8522ebc01108557f5f8fa64fc3c3cf9
7
+ data.tar.gz: fd96942cd14a89a587fc010495f66124761c59502ad98b43f813bb80c53fd5429a748c710e9e4f4e614b59e789251e96957abbabaec486f39015f3524e9c6d50
data/.rubocop.yml CHANGED
@@ -1,32 +1,7 @@
1
1
  ---
2
- inherit_from: .rubocop_todo.yml
3
-
4
- require:
5
- - rubocop-performance
6
- - rubocop-rake
7
- - rubocop-rspec
8
-
9
- AllCops:
10
- TargetRubyVersion: 2.7
11
- NewCops: enable
12
-
13
- Gemspec/RequireMFA:
14
- Enabled: false
15
-
16
- Gemspec/DevelopmentDependencies:
17
- Enabled: false
18
-
19
- Style/TrailingCommaInHashLiteral:
20
- Enabled: True
21
- EnforcedStyleForMultiline: consistent_comma
22
-
23
- Style/TrailingCommaInArrayLiteral:
24
- Enabled: True
25
- EnforcedStyleForMultiline: consistent_comma
26
-
27
- Style/TrailingCommaInArguments:
28
- Enabled: True
29
- EnforcedStyleForMultiline: comma
2
+ inherit_from:
3
+ - rubocop.yml
4
+ - .rubocop_todo.yml
30
5
 
31
6
  Layout/LineLength:
32
7
  Exclude:
@@ -68,8 +43,5 @@ RSpec/MultipleExpectations:
68
43
  RSpec/NestedGroups:
69
44
  Max: 4
70
45
 
71
- Metrics:
72
- Enabled: false
73
-
74
46
  Style:
75
47
  Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.1.0](https://github.com/voxpupuli/beaker/tree/5.1.0) (2023-03-27)
4
+
5
+ **Implemented enhancements:**
6
+
7
+ - Introduce shareable rubocop config [\#1795](https://github.com/voxpupuli/beaker/pull/1795) ([bastelfreak](https://github.com/bastelfreak))
8
+
3
9
  ## [5.0.0](https://github.com/voxpupuli/beaker/tree/5.0.0) (2023-03-24)
4
10
 
5
11
  **Breaking changes:**
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '5.0.0'
3
+ STRING = '5.1.0'
4
4
  end
5
5
  end
data/rubocop.yml ADDED
@@ -0,0 +1,39 @@
1
+ ---
2
+ # this file is the base rubocop config for beaker + all beaker plugins
3
+ require:
4
+ - rubocop-performance
5
+ - rubocop-rake
6
+ - rubocop-rspec
7
+
8
+ AllCops:
9
+ NewCops: enable
10
+ DisplayCopNames: true
11
+ ExtraDetails: true
12
+ DisplayStyleGuide: true
13
+ TargetRubyVersion: '2.7'
14
+ Exclude:
15
+ - vendor/**/*
16
+ - .vendor/**/*
17
+
18
+ # this currently doesn't work with the way we handle our secrets
19
+ Gemspec/RequireMFA:
20
+ Enabled: false
21
+
22
+ # current Vox Pupuli default is to use `add_development_dependency` in the gemspec
23
+ Gemspec/DevelopmentDependencies:
24
+ Enabled: false
25
+
26
+ Style/TrailingCommaInHashLiteral:
27
+ Enabled: True
28
+ EnforcedStyleForMultiline: consistent_comma
29
+
30
+ Style/TrailingCommaInArrayLiteral:
31
+ Enabled: True
32
+ EnforcedStyleForMultiline: consistent_comma
33
+
34
+ Style/TrailingCommaInArguments:
35
+ Enabled: True
36
+ EnforcedStyleForMultiline: comma
37
+
38
+ Metrics:
39
+ Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-24 00:00:00.000000000 Z
11
+ date: 2023-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fakefs
@@ -535,6 +535,7 @@ files:
535
535
  - lib/beaker/test_suite.rb
536
536
  - lib/beaker/test_suite_result.rb
537
537
  - lib/beaker/version.rb
538
+ - rubocop.yml
538
539
  - spec/beaker/cli_spec.rb
539
540
  - spec/beaker/command_spec.rb
540
541
  - spec/beaker/dsl/assertions_spec.rb