boxt_rubocop 1.1.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -8
  3. data/VERSION +1 -1
  4. data/rspec.yml +3 -1
  5. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0d430acee1e3da79ba89bd897af13d8da4e9e26afff31d667dc9c3654c45210
4
- data.tar.gz: a3dbe02615e786cf49a624fd1c3b137c100acae48fb96ad26e024c94f1214069
3
+ metadata.gz: 8e7d1d6d1a02f5d0a923ca8d7002c82b7deae8df493fcea2c7857800a7acf525
4
+ data.tar.gz: 3044d24ade8023c044a35ff4c3506010c3c727b237db17a10c6004a33037f713
5
5
  SHA512:
6
- metadata.gz: 05e5f0059a8fcc21e41d545c602b6f91af010cbe9b579aab03f1be157c003a0fa55bf67a33615988b16aef19184bfda3059297c68bfd6e8c74516b238be51008
7
- data.tar.gz: 2892f7f57a81b5bede2a39d9bb23d9c26502b486f11e05a453f9412ecd088024274d080a228e208ea387b07d32be8b0082946c6ceaf926178ff45f76ca0bb057
6
+ metadata.gz: 9b73ddad46ccd1ae194739a0778b7b00ca99dae67680379e50da2d87e6ac689789c352c159442c7aeab76d008cd9d5413178190b81f72934bd879ccaac0db667
7
+ data.tar.gz: 3707df713180b7059cbb2f4f79030a48a3e4d6fe52b5b63596ef5c0794ea0519ae260a6e5ecfe437cc672d7f8cbaf0432c64a32d911ac6792fe7dc01f10110e2
data/README.md CHANGED
@@ -7,7 +7,7 @@ Base [Rubocop](https://rubocop.org) settings for all Boxt Ruby projects.
7
7
 
8
8
  ## Requirements
9
9
 
10
- * Ruby >= 2.7
10
+ - Ruby >= 3.0
11
11
 
12
12
  ## Installation
13
13
 
@@ -32,8 +32,8 @@ Put this into your .rubocop.yml.
32
32
 
33
33
  ```yml
34
34
  require:
35
- - boxt_rubocop
36
- ```
35
+ - boxt_rubocop
36
+ ```
37
37
 
38
38
  To enable additional configuration for `rubocop-rails` and `rubocop-rspec`, add the following to your .rubocop.yml:
39
39
 
@@ -67,11 +67,11 @@ Documentation on creating a new cop can be found [here](https://docs.rubocop.org
67
67
 
68
68
  The following Rubocop gems are also installed with this gem:
69
69
 
70
- * [rubocop-faker](https://github.com/koic/rubocop-faker)
71
- * [rubocop-performance](https://github.com/rubocop/rubocop-performance)
72
- * [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
73
- * [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
74
- * [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)
70
+ - [rubocop-faker](https://github.com/koic/rubocop-faker)
71
+ - [rubocop-performance](https://github.com/rubocop/rubocop-performance)
72
+ - [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
73
+ - [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
74
+ - [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)
75
75
 
76
76
  To enable these add the following to your `.rubocop.yml` file.
77
77
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 2.1.0
data/rspec.yml CHANGED
@@ -25,4 +25,6 @@ RSpec/MultipleMemoizedHelpers:
25
25
  RSpec/NestedGroups:
26
26
  Max: 4
27
27
 
28
-
28
+ # Multi-line examples must have a description
29
+ RSpec/ExampleWithoutDescription:
30
+ EnforcedStyle: single_line_only
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxt_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boxt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-06 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -127,14 +127,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - ">="
129
129
  - !ruby/object:Gem::Version
130
- version: '2.7'
130
+ version: '3.0'
131
131
  required_rubygems_version: !ruby/object:Gem::Requirement
132
132
  requirements:
133
133
  - - ">="
134
134
  - !ruby/object:Gem::Version
135
135
  version: '0'
136
136
  requirements: []
137
- rubygems_version: 3.4.10
137
+ rubygems_version: 3.5.3
138
138
  signing_key:
139
139
  specification_version: 4
140
140
  summary: Base Rubocop settings for all Boxt Ruby projects