rubocop-nosolosoftware 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/rubocop-nosolosoftware/version.rb +1 -1
- data/rubocop-layout.yml +4 -0
- data/rubocop-metrics.yml +0 -4
- data/rubocop-rails.yml +5 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b41ca476ebbc24df90f844c99f14bb995deecd54dc2e29f292cdbc7904a84f12
|
|
4
|
+
data.tar.gz: 1d039963ff9238491133bbb088bf112580bf769e7903720493e97342529b2fb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecacf4bc61f13e6ae1524bbfb0739deb4380b66e4c3b41c7b16a1bffdf7d0dacadc78f9b187e6fb60ce7f02c800a0981c641171b302a6d1fbec9b7ecfbabf8d3
|
|
7
|
+
data.tar.gz: 6932a0373cb07819401c43501e22dee57071ab7cdfc6863fad092dda6e61baa072473ba61bffa0bcb780815e02c2e4a909eb993f6eee4bb1e8b0113e5c346292
|
data/CHANGELOG.md
CHANGED
|
@@ -9,10 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## [0.2.0] - 2019-12-23
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Move LineLength cop from Metrics to Layout and require rubocop 0.78.0.
|
|
17
|
+
|
|
18
|
+
|
|
12
19
|
## [0.1.0] - 2019-12-03
|
|
13
20
|
|
|
14
21
|
First version of this gem.
|
|
15
22
|
|
|
16
23
|
|
|
17
|
-
[Unreleased]: https://github.com/nosolosoftware/rubocop-nosolosoftware/compare/v0.
|
|
24
|
+
[Unreleased]: https://github.com/nosolosoftware/rubocop-nosolosoftware/compare/v0.2.0...HEAD
|
|
25
|
+
[0.2.0]: https://github.com/nosolosoftware/rubocop-nosolosoftware/compare/v0.1.0...v0.2.0
|
|
18
26
|
[0.1.0]: https://github.com/nosolosoftware/rubocop-nosolosoftware/releases/tag/v0.1.0
|
data/rubocop-layout.yml
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
Layout/FirstArrayElementIndentation:
|
|
7
7
|
EnforcedStyle: consistent
|
|
8
8
|
|
|
9
|
+
# https://rubocop.readthedocs.io/en/latest/cops_layout/#layoutlinelength
|
|
10
|
+
Layout/LineLength:
|
|
11
|
+
Max: 100
|
|
12
|
+
|
|
9
13
|
# https://rubocop.readthedocs.io/en/latest/cops_layout/#layoutspacearoundequalsinparameterdefault
|
|
10
14
|
Layout/SpaceAroundEqualsInParameterDefault:
|
|
11
15
|
EnforcedStyle: no_space
|
data/rubocop-metrics.yml
CHANGED
|
@@ -10,10 +10,6 @@ Metrics/AbcSize:
|
|
|
10
10
|
Metrics/ClassLength:
|
|
11
11
|
Enabled: false
|
|
12
12
|
|
|
13
|
-
# https://rubocop.readthedocs.io/en/latest/cops_metrics/#metricslinelength
|
|
14
|
-
Metrics/LineLength:
|
|
15
|
-
Max: 100
|
|
16
|
-
|
|
17
13
|
# https://rubocop.readthedocs.io/en/latest/cops_metrics/#metricsmethodlength
|
|
18
14
|
Metrics/MethodLength:
|
|
19
15
|
Enabled: false
|
data/rubocop-rails.yml
CHANGED
|
@@ -37,6 +37,11 @@ Metrics/ModuleLength:
|
|
|
37
37
|
- "**/spec/**/*.rb"
|
|
38
38
|
- "**/config/routes.rb"
|
|
39
39
|
|
|
40
|
+
# https://www.rubocop.org/en/stable/cops_naming/#namingfilename
|
|
41
|
+
Naming/FileName:
|
|
42
|
+
Exclude:
|
|
43
|
+
- "**/Envfile"
|
|
44
|
+
|
|
40
45
|
# https://rubocop.readthedocs.io/en/latest/cops_style/#stylesymbolproc
|
|
41
46
|
Style/SymbolProc:
|
|
42
47
|
Exclude:
|
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.
|
|
4
|
+
version: 0.2.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: 2019-12-
|
|
11
|
+
date: 2019-12-23 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.
|
|
19
|
+
version: 0.78.0
|
|
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.
|
|
26
|
+
version: 0.78.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-performance
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -110,8 +110,8 @@ homepage: https://github.com/nosolosoftware/rubocop-nosolosoftware
|
|
|
110
110
|
licenses:
|
|
111
111
|
- MIT
|
|
112
112
|
metadata:
|
|
113
|
-
source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v0.
|
|
114
|
-
changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.
|
|
113
|
+
source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v0.2.0
|
|
114
|
+
changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.2.0/CHANGELOG.md
|
|
115
115
|
homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
|
|
116
116
|
post_install_message:
|
|
117
117
|
rdoc_options:
|