rubocop-nosolosoftware 1.0.0 → 1.1.0

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: b1316db6cb779aa63c14de37309e49f1aa454443719e2d37e05bd2456738eece
4
- data.tar.gz: a9c63c57b156bad203c1455c2a63e645813e4be2023e1d1d5a8bbc24efe1e1ba
3
+ metadata.gz: aab4a3d1c9e9a65f0b69f9798bd72c62deae2ffb4fb00998390e7db8ed3a70ce
4
+ data.tar.gz: b2bc912ea28242d44088704b54f80181963d7f1ed772a9c7aecc771b93d05c00
5
5
  SHA512:
6
- metadata.gz: d4f48333fe7116236116994b3842a6bf7f1403a435a0b66a7731d0569cc26a4e92f624c43b5c50b7e7734230cf39d6eede0f5b275ddc36ee3beb9da061e4eb7f
7
- data.tar.gz: 3ef4abd15de78ada30af255655c8780bf9c992fa6274306e9ff250f17394f4a71e39478f1290750ab4b99767605b2e3efd4b8614e68388af41e551cec6f79a93
6
+ metadata.gz: c2db1edca2e3bc75f90ed787d61bf30ca12a42eaa871b2c9d9203ec1756f05ce6d2a702a5b580372bcbca87b15274a01a866072676580976e94aa0c3902cff28
7
+ data.tar.gz: 19e0088b69bd29c3ad3568b61efd9168ed9b63eedbbe9b8bd7b5a42c099e021ca557bc0762dd9195bfbfe072465f0a70ebe2767f406b7af6538a7ed4a916a306
@@ -5,6 +5,16 @@ 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
+ ## 1.1.0 - 2020-11-13
9
+ ### Added
10
+ - Added new rules introduced in the last version.
11
+ - Lint/NoReturnInBeginEndBlocks (1.2)
12
+ - Style/CollectionCompact (1.2)
13
+ - Style/NegatedIfElseCondition (1.2)
14
+
15
+ ### Changed
16
+ - Changed Naming/VariableNumber to start using snake_case
17
+
8
18
  ## 1.0.0 - 2020-11-04
9
19
  ### Added
10
20
  - Added new rules introduced in the last version.
@@ -27,3 +27,7 @@ Lint/HashCompareByIdentity:
27
27
  # https://docs.rubocop.org/rubocop/cops_lint.html#lintredundantsafenavigation
28
28
  Lint/RedundantSafeNavigation:
29
29
  Enabled: true
30
+
31
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintnoreturninbeginendblocks
32
+ Lint/NoReturnInBeginEndBlocks:
33
+ Enabled: true
@@ -1,3 +1,7 @@
1
1
  #
2
2
  ## https://rubocop.readthedocs.io/en/latest/cops_naming/
3
3
  #
4
+
5
+ # https://docs.rubocop.org/rubocop/cops_naming.html#namingvariablenumber
6
+ Naming/VariableNumber:
7
+ EnforcedStyle: snake_case
@@ -48,3 +48,11 @@ Style/BlockComments:
48
48
  # https://docs.rubocop.org/rubocop/cops_style.html#styleregexpliteral
49
49
  Style/RegexpLiteral:
50
50
  AllowInnerSlashes: true
51
+
52
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylecollectioncompact
53
+ Style/CollectionCompact:
54
+ Enabled: true
55
+
56
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylenegatedifelsecondition
57
+ Style/NegatedIfElseCondition:
58
+ 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.0.0
4
+ version: 1.1.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-11-04 00:00:00.000000000 Z
11
+ date: 2020-11-13 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.1'
19
+ version: '1.2'
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.1'
26
+ version: '1.2'
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.0.0
129
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.0.0/CHANGELOG.md
128
+ source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.1.0
129
+ changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.1.0/CHANGELOG.md
130
130
  homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
131
131
  post_install_message:
132
132
  rdoc_options: