rubocop-nosolosoftware 1.13.0 → 1.14.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: f748f862232301cb934858457dd800cf4416979b2bf79c801ba1efad2048bf9d
4
- data.tar.gz: 8434ef9fb1c4d8b12e715a0e495b4de41c9a75b23b288f86a22dbbb76942247d
3
+ metadata.gz: d35ce659881527a33d0f730913200c20c64df4f7e7953ef6c647a79662410fc8
4
+ data.tar.gz: 81e1d90469a5f721f6a8d1ca571fc65b0b8537cc25acbb043856313e83cec238
5
5
  SHA512:
6
- metadata.gz: e165a0a2a1f651b6232284ca656e9a3d12dd0aba3727f4c93d13f2d8d6fc67878ad3182c5590fa7dc1bf6e0676ebebed51c867d2fb9435cfd0fa68992b1b1848
7
- data.tar.gz: 41c02871fd0e884448de005cce849a5f9d81bed9d7912879d026e61b088ab34e93108af39dbdd95962ff28815c1f65f2bd94b6dd29486143237c0b9dde19a6ef
6
+ metadata.gz: 61757e1318a3fad6627e4d092263cee7c7ca5873c064d0d70be0a4eaef5c9234d0671d32a93b7178c6908e20c305dc944e243e95c20d7389e6d4fc3de8718bc7
7
+ data.tar.gz: 438dd2e9bd99a85861b3071c9120ff3777d57bfe4fbcfe5ce2c001f3d1de66ba8391625d68d598b04e36da861b65852769091de03cc9025afbc754a3724840f8
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  The following rules have been added:
9
9
 
10
+ ## 1.14.0 - 2022-03-04
11
+ - Added new rules
12
+ - rubocop-rails
13
+ - Rails/CompactBlank (2.13)
14
+ - rubocop-performance
15
+ - Performance/StringIdentifierArgument (1.13)
16
+ - rubocop-rspec
17
+ - RSpec/BeEq (2.9)
18
+ - RSpec/BeNil (2.9)
19
+
10
20
  ## 1.13.0 - 2022-02-25
11
21
  - Added new rules
12
22
  - rubocop
@@ -71,3 +71,7 @@ Performance/RedundantEqualityComparisonBlock:
71
71
  # https://docs.rubocop.org/rubocop-performance/cops_performance.html#performanceredundantsplitregexpargument
72
72
  Performance/RedundantSplitRegexpArgument:
73
73
  Enabled: true
74
+
75
+ # https://docs.rubocop.org/rubocop-performance/cops_performance.html#performancestringidentifierargument
76
+ Performance/StringIdentifierArgument:
77
+ Enabled: true
data/rubocop-rails.yml CHANGED
@@ -165,3 +165,7 @@ Rails/RedundantPresenceValidationOnBelongsTo:
165
165
  # https://docs.rubocop.org/rubocop-rails/cops_rails.html#railsschemacomment
166
166
  Rails/SchemaComment:
167
167
  Enabled: false
168
+
169
+ # https://docs.rubocop.org/rubocop-rails/cops_rails.html#railscompactblank
170
+ Rails/CompactBlank:
171
+ Enabled: true
data/rubocop-rspec.yml CHANGED
@@ -65,3 +65,11 @@ RSpec/SubjectDeclaration:
65
65
  # https://docs.rubocop.org/rubocop-rspec/cops_rspec_factorybot.html#rspecfactorybotsyntaxmethods
66
66
  RSpec/FactoryBot/SyntaxMethods:
67
67
  Enabled: true
68
+
69
+ # https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecbeeq
70
+ RSpec/BeEq:
71
+ Enabled: true
72
+
73
+ # https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecbenil
74
+ RSpec/BeNil:
75
+ Enabled: true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-nosolosoftware
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Aranda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-04 00:00:00.000000000 Z
11
+ date: 2022-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '2.8'
89
+ version: '2.9'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '2.8'
96
+ version: '2.9'
97
97
  description: ''
98
98
  email: jaranda@nosolosoftware.es
99
99
  executables: []
@@ -125,8 +125,8 @@ homepage: https://github.com/nosolosoftware/rubocop-nosolosoftware
125
125
  licenses:
126
126
  - MIT
127
127
  metadata:
128
- source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.13.0
129
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.13.0/CHANGELOG.md
128
+ source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.14.0
129
+ changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.14.0/CHANGELOG.md
130
130
  homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
131
131
  post_install_message:
132
132
  rdoc_options: