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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a44d29c545f71dd22af55d799e3ad770234f2d22ba7c7bde5a159e0fd6135c80
4
- data.tar.gz: 92e76fcf364aa414181903a0842bdad4e1dd5c7e1649d04401d9f210a37ed404
3
+ metadata.gz: 63e97c9f503597572f1e1e8240e7ff2cbcca867a87f55173f5ae664702e00d48
4
+ data.tar.gz: 7521bdaf213c9637d21985fc1277bd092cab25d5d67c57d38ff285c3eee142e9
5
5
  SHA512:
6
- metadata.gz: 9131b2ad3253b0f327d4ecaf751af263a5063782152967ea8c6ddb3fb1d496d3e47ec9ea3d4594db0b698dda5806234716de8ecec78c9f036379ab71dacccff2
7
- data.tar.gz: a3d2aa3566cd7eb021080d1a1b5b94a8e8028123b27d56755a24610f0ef7838440673690b5abb1ef20df9d7acf6b8d4874d7ae5bcd12bdd9aba8eb50ef889811
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.0] - 05 Febuary 2021
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.0', require: false
10
+ gem 'rubocopital', '~> 1.0.1', require: false
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rubocopital
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocopital
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcel Eeken