rubocopital 1.0.0 → 1.0.1
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 +4 -4
- data/.rubocop-rspec.yml +12 -0
- data/CHANGELOG.md +7 -1
- data/README.md +1 -1
- data/lib/rubocopital/version.rb +1 -1
- data/new_cops.yml +0 -10
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63e97c9f503597572f1e1e8240e7ff2cbcca867a87f55173f5ae664702e00d48
|
|
4
|
+
data.tar.gz: 7521bdaf213c9637d21985fc1277bd092cab25d5d67c57d38ff285c3eee142e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7974b4cdc043aeb3e0adea9f343d0153c06126775da904cf9a4c0a4dba1a181f238f70a81143154f93d7e70e01fcbaa5dc4b89866d0341e89c60b85919fe9009
|
|
7
|
+
data.tar.gz: 61826ba3c21774a0419230b30ab85f1e7e4c2555d4d5f3d119b42a6f0d1754274559da0b7e12e1a7b6258532a68a6d4469396e282c0546dde3a5ed1197be1ce0
|
data/.rubocop-rspec.yml
CHANGED
|
@@ -264,3 +264,15 @@ RSpec/RepeatedExampleGroupBody:
|
|
|
264
264
|
|
|
265
265
|
RSpec/EmptyHook:
|
|
266
266
|
Enabled: true
|
|
267
|
+
|
|
268
|
+
# TODO Cops
|
|
269
|
+
Rails/AfterCommitOverride: # (new in 2.8)
|
|
270
|
+
Enabled: false
|
|
271
|
+
Rails/AttributeDefaultBlockValue: # (new in 2.9)
|
|
272
|
+
Enabled: false
|
|
273
|
+
Rails/SquishedSQLHeredocs: # (new in 2.8)
|
|
274
|
+
Enabled: false
|
|
275
|
+
Rails/WhereEquals: # (new in 2.9)
|
|
276
|
+
Enabled: false
|
|
277
|
+
Rails/WhereNot: # (new in 2.8)
|
|
278
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
## [1.0.
|
|
9
|
+
## [1.0.1] - 05 February 2021
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Fixed projects without Rubocop-Rails
|
|
14
|
+
|
|
15
|
+
## [1.0.0] - 05 February 2021
|
|
10
16
|
|
|
11
17
|
### Changed
|
|
12
18
|
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This is the common configuration for ruby-style checks by [Rubocop](https://gith
|
|
|
7
7
|
Add this line to your application's Gemfile under the `development` and `test` groups to include a specific version of this gem:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem 'rubocopital', '~> 1.0.
|
|
10
|
+
gem 'rubocopital', '~> 1.0.1', require: false
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
And then execute:
|
data/lib/rubocopital/version.rb
CHANGED
data/new_cops.yml
CHANGED
|
@@ -87,13 +87,3 @@ Style/NilLambda: # (new in 1.3)
|
|
|
87
87
|
Style/RedundantArgument: # (new in 1.4)
|
|
88
88
|
Enabled: false
|
|
89
89
|
|
|
90
|
-
Rails/AfterCommitOverride: # (new in 2.8)
|
|
91
|
-
Enabled: false
|
|
92
|
-
Rails/AttributeDefaultBlockValue: # (new in 2.9)
|
|
93
|
-
Enabled: false
|
|
94
|
-
Rails/SquishedSQLHeredocs: # (new in 2.8)
|
|
95
|
-
Enabled: false
|
|
96
|
-
Rails/WhereEquals: # (new in 2.9)
|
|
97
|
-
Enabled: false
|
|
98
|
-
Rails/WhereNot: # (new in 2.8)
|
|
99
|
-
Enabled: false
|