rubocop-nosolosoftware 0.7.0 → 0.8.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: f1f256e884ae63111efa71f5c69acadd0caf7cb57d288a778824562d667c6059
4
- data.tar.gz: b54431a2cd90b1287402bba7433c4f0a86690632192670c25247da5f60bae9fd
3
+ metadata.gz: 36dd7dd406748669e08b9f2c1d1ac6af56b69fc7bdf5e935f9e89a51b1645fd9
4
+ data.tar.gz: b822e653ecfd14baecbe4166a40956dbe2b2ebcb94cb0e9c70feebb4c8766e6b
5
5
  SHA512:
6
- metadata.gz: 57a5ed7a613474b8820ef364a4a7cb08eb31a8e5e56d29a08a156f02bb845b146c8183037e7673f06a463d52e894f99e3b499df8e1160d52326c6ef1daf0b794
7
- data.tar.gz: 9d36f3fd6cfbf65090562c1684e3796957cee41209c4f0d8d4d685ec76b55dac99b286c9d6a0ed1cbaa82afdac8daac0c71683f7990b09e5a1e0d3dd12257093
6
+ metadata.gz: ea6af87a67f7706395bba8f20f399291d01462c51aaeffa43d208318d59e04143858069bc2eaf18c3c5ff8b8ce5953b82de7c10271dcf44657ad4ef8e791c73d
7
+ data.tar.gz: a380a542038def25b26c2f628dabc454da5de51d1c8c117da25bc7b571e24ec204c66ddf82de120b5b5f6e869cec69ea5fb4ac1c01c90f5f76daae072cb5b52f
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 0.8.0 - 2020-08-07
9
+
10
+ ### Added
11
+ - Added new rules introduced in the last version.
12
+ - Lint/BinaryOperatorWithIdenticalOperands (0.89)
13
+ - Lint/DuplicateRescueException (0.89)
14
+ - Lint/EmptyConditionalBody (0.89)
15
+ - Lint/FloatComparison (0.89)
16
+ - Lint/MissingSuper (0.89)
17
+ - Lint/OutOfRangeRegexpRef (0.89)
18
+ - Lint/SelfAssignment (0.89)
19
+ - Lint/TopLevelReturnWithArgument (0.89)
20
+ - Lint/UnreachableLoop (0.89)
21
+ - Style/ExplicitBlockArgument (0.89)
22
+ - Style/GlobalStdStream (0.89)
23
+ - Style/OptionalBooleanParameter (0.89)
24
+ - Style/SingleArgumentDig (0.89)
25
+ - Style/StringConcatenation (0.89)
26
+
8
27
  ## 0.7.0 - 2020-08-03
9
28
 
10
29
  ### Added
@@ -21,3 +21,39 @@ Lint/MixedRegexpCaptureTypes:
21
21
  # https://docs.rubocop.org/rubocop/cops_lint.html#lintduplicateelsifcondition
22
22
  Lint/DuplicateElsifCondition:
23
23
  Enabled: true
24
+
25
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintbinaryoperatorwithidenticaloperands
26
+ Lint/BinaryOperatorWithIdenticalOperands:
27
+ Enabled: true
28
+
29
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintduplicaterescueexception
30
+ Lint/DuplicateRescueException:
31
+ Enabled: true
32
+
33
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintemptyconditionalbody
34
+ Lint/EmptyConditionalBody:
35
+ Enabled: true
36
+
37
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintfloatcomparison
38
+ Lint/FloatComparison:
39
+ Enabled: true
40
+
41
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintoutofrangeregexpref
42
+ Lint/OutOfRangeRegexpRef:
43
+ Enabled: true
44
+
45
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintselfassignment
46
+ Lint/SelfAssignment:
47
+ Enabled: true
48
+
49
+ # https://docs.rubocop.org/rubocop/cops_lint.html#linttoplevelreturnwithargument
50
+ Lint/TopLevelReturnWithArgument:
51
+ Enabled: true
52
+
53
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintunreachableloop
54
+ Lint/UnreachableLoop:
55
+ Enabled: true
56
+
57
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintmissingsuper
58
+ Lint/MissingSuper:
59
+ Enabled: true
@@ -85,3 +85,23 @@ Style/HashLikeCase:
85
85
  # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantfileextensioninrequire
86
86
  Style/RedundantFileExtensionInRequire:
87
87
  Enabled: true
88
+
89
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleexplicitblockargument
90
+ Style/ExplicitBlockArgument:
91
+ Enabled: true
92
+
93
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleglobalstdstream
94
+ Style/GlobalStdStream:
95
+ Enabled: true
96
+
97
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleoptionalbooleanparameter
98
+ Style/OptionalBooleanParameter:
99
+ Enabled: true
100
+
101
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylesingleargumentdig
102
+ Style/SingleArgumentDig:
103
+ Enabled: true
104
+
105
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylestringconcatenation
106
+ Style/StringConcatenation:
107
+ 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: 0.7.0
4
+ version: 0.8.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: 2020-08-03 00:00:00.000000000 Z
11
+ date: 2020-08-07 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: '0.88'
19
+ version: '0.89'
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: '0.88'
26
+ version: '0.89'
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/v0.7.0
129
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.7.0/CHANGELOG.md
128
+ source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v0.8.0
129
+ changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.8.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.0.3
148
148
  signing_key:
149
149
  specification_version: 4
150
150
  summary: Default Rubocop configuration used in NoSoloSoftware developments