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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a61c152b479d508b2373acd221dab0683938ba1a1e872bd008c5dd956a838688
4
- data.tar.gz: 5a9f041171d20215d43d53a49925a4ccaed5c69fc9af3af6f3817c9a32822d95
3
+ metadata.gz: b41ca476ebbc24df90f844c99f14bb995deecd54dc2e29f292cdbc7904a84f12
4
+ data.tar.gz: 1d039963ff9238491133bbb088bf112580bf769e7903720493e97342529b2fb4
5
5
  SHA512:
6
- metadata.gz: 238b58095cc0ed0acb55597d01edf4197a264ca0a372fdc90bf65b3a6a11dbca5d0d32928ee5a26f8b164d7d6540836d168cc55498f6b69b08c586930109bb4d
7
- data.tar.gz: 8a7333d4eaba7f2bdd972187fd858147fdc9186182b9564d96ead26b710ddb341105d7c96e8a550de5ce45888be2fa30d6545a30b03be9d2030e2b450104e527
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.1.0...HEAD
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
@@ -1,7 +1,7 @@
1
1
  module RubocopNoSoloSoftware
2
2
  module VERSION
3
3
  MAJOR = 0
4
- MINOR = 1
4
+ MINOR = 2
5
5
  TINY = 0
6
6
  PRE = nil
7
7
 
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.1.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-03 00:00:00.000000000 Z
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.77.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.77.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.1.0
114
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.1.0/CHANGELOG.md
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: