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.
- checksums.yaml +4 -4
- data/README.md +8 -8
- data/VERSION +1 -1
- data/rspec.yml +3 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e7d1d6d1a02f5d0a923ca8d7002c82b7deae8df493fcea2c7857800a7acf525
|
4
|
+
data.tar.gz: 3044d24ade8023c044a35ff4c3506010c3c727b237db17a10c6004a33037f713
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
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
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
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
|
+
2.1.0
|
data/rspec.yml
CHANGED
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:
|
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:
|
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: '
|
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.
|
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
|