rubocop-nosolosoftware 1.8.1 → 1.9.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: 444865c97c89aafd3e74c3156282b589b45819bb8ba1b6ad8e9439a571bc2e93
4
- data.tar.gz: b8776e482f4df570443e7d612de82e4bbfdd98e8c1d1b2575f52bbbaedd7cad0
3
+ metadata.gz: 5a2b89389fff62abb0e2ced1d89ba2a179b17f8d8fab6bd204ffae9314d1dc85
4
+ data.tar.gz: 9c5017b7917dfa8093842adaeb552c5f6fa219a35efcdceab7e6b6d7d14bd46a
5
5
  SHA512:
6
- metadata.gz: 054a1ba223693e47d7906f1ed9d3981d264d4cad85eeb7821d2665240f31be5c55f7202edf3ec60a2da66ee00ff6cc60fae1c60a872e22c29cb3e3f4626ff282
7
- data.tar.gz: 87680d9687e7634baa1fb4984218c08b280af012e2ee1a8acefdb41e6dd8f5bfd07f54b371639e672c90bb5256add39bd7acac9172790ce3ae4021cd66dadb44
6
+ metadata.gz: b5a082e0295b370a2f6a0e45b556c9bc35ec8e9217e3fc9c43b73d5b3c10d2930c55c187d39b08fb67f3192ae0787a6bb6fcb59655cb61e9c8e5a9f820e5677f
7
+ data.tar.gz: aebdd83909c1a4673e370d236d07694da5de9cdc6c4128c1cfb855acb8ee20abd2500f3d9e892c64d453f0c3fdc713d220a52bdd08135aa7e1a34c4b1a1ddae5
data/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ 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.9.0 - 2021-08-18
11
+ - Added new rules introduced in the 1.19 version.
12
+ - rubocop
13
+ - Lint/AmbiguousRange
14
+ - Style/RedundantSelfAssignmentBranch
15
+
16
+ ### Changed
17
+ - Updated dependency rubocop to 1.19
18
+
10
19
  ## 1.8.1 - 2021-07-26
11
20
 
12
21
  ### Changed
data/rubocop-lint.yml CHANGED
@@ -79,3 +79,7 @@ Lint/TripleQuotes:
79
79
  # https://docs.rubocop.org/rubocop/cops_lint.html#lintemptyinpattern
80
80
  Lint/EmptyInPattern:
81
81
  Enabled: true
82
+
83
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintambiguousrange
84
+ Lint/AmbiguousRange:
85
+ Enabled: false
data/rubocop-style.yml CHANGED
@@ -96,3 +96,7 @@ Style/QuotedSymbols:
96
96
  # https://docs.rubocop.org/rubocop/cops_style.html#stylestringchars
97
97
  Style/StringChars:
98
98
  Enabled: true
99
+
100
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantselfassignmentbranch
101
+ Style/RedundantSelfAssignmentBranch:
102
+ 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.8.1
4
+ version: 1.9.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: 2021-07-26 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.18'
19
+ version: '1.19'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.18'
26
+ version: '1.19'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-faker
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -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.8.1
129
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.8.1/CHANGELOG.md
128
+ source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.9.0
129
+ changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.9.0/CHANGELOG.md
130
130
  homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
131
131
  post_install_message:
132
132
  rdoc_options:
@@ -144,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  requirements: []
147
- rubygems_version: 3.1.2
147
+ rubygems_version: 3.1.4
148
148
  signing_key:
149
149
  specification_version: 4
150
150
  summary: Default Rubocop configuration used in NoSoloSoftware developments