nonstandard 0.1.1 → 0.1.2

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: 8e903ec605f9801f15924036c69c7e3a2abbceb3d2ef4bf245cdcbffdbe54d59
4
- data.tar.gz: f1577a78c4d1d01ab0372a0c6dfecd8760f46230badd4922578885fdbef08229
3
+ metadata.gz: d75402f0cd408fea08271bafb71c3fcec3326f8edc3ad01ebbdb1b2ad72f3cd9
4
+ data.tar.gz: fcd02277980b6f4527e3762542c6a92b81cfa93135791a9eaf96b74ceff46240
5
5
  SHA512:
6
- metadata.gz: c901bc91e01ef16a9bb83e7feddec4805df6a6d7a101bf7217626e76729a219a320321e4c64afbf9fdfe8ec9762141b352d40d57efe98a5b7cf6bd7146b63ed3
7
- data.tar.gz: 934a74ab5dfd931861730ba9a26af762929ed72f47f3be3c3606ab4ffee5518df0d4eff7d3d434161e1f9740f77ffe779e60cddfe89ded4b148de7d60097d189
6
+ metadata.gz: 4bfd5620e46da3dba6eff8a0899fb6940349743f71508621f4de16c8bb424ee8c74bcb75bf47234f9ca41ce510e227ffe4073b5b620717ea4968293e1b331312
7
+ data.tar.gz: fb10da36b30709281faf4512403966432fe6e1cd77cd28954f98881ef86f6b4a5cd19b2cbf0d8ff77a0dd8d14188569cce881545475449a772b2a42e0dd39546
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 0.0.1 (2021-05-19)
3
+ ## main (unreleased)
4
+ - Work in Progress
5
+
6
+ ## 0.1.2 (2021-06-11)
7
+ - Improvement: Disable AbcSize/BlockLength/MethodLength
8
+
9
+ ## 0.1.1 (2021-05-19)
4
10
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonstandard (0.1.1)
4
+ nonstandard (0.1.2)
5
5
  rubocop
6
6
  rubocop-faker
7
7
  rubocop-performance
@@ -19,7 +19,7 @@ GEM
19
19
  tzinfo (~> 2.0)
20
20
  zeitwerk (~> 2.3)
21
21
  ast (2.4.2)
22
- concurrent-ruby (1.1.8)
22
+ concurrent-ruby (1.1.9)
23
23
  faker (2.18.0)
24
24
  i18n (>= 1.6, < 2)
25
25
  i18n (1.8.10)
@@ -33,16 +33,16 @@ GEM
33
33
  rake (13.0.3)
34
34
  regexp_parser (2.1.1)
35
35
  rexml (3.2.5)
36
- rubocop (1.15.0)
36
+ rubocop (1.16.1)
37
37
  parallel (~> 1.10)
38
38
  parser (>= 3.0.0.0)
39
39
  rainbow (>= 2.2.2, < 4.0)
40
40
  regexp_parser (>= 1.8, < 3.0)
41
41
  rexml
42
- rubocop-ast (>= 1.5.0, < 2.0)
42
+ rubocop-ast (>= 1.7.0, < 2.0)
43
43
  ruby-progressbar (~> 1.7)
44
44
  unicode-display_width (>= 1.4.0, < 3.0)
45
- rubocop-ast (1.5.0)
45
+ rubocop-ast (1.7.0)
46
46
  parser (>= 3.0.1.1)
47
47
  rubocop-faker (1.1.0)
48
48
  faker (>= 2.12.0)
@@ -56,7 +56,7 @@ GEM
56
56
  rubocop (>= 1.7.0, < 2.0)
57
57
  rubocop-rake (0.5.1)
58
58
  rubocop
59
- rubocop-rspec (2.3.0)
59
+ rubocop-rspec (2.4.0)
60
60
  rubocop (~> 1.0)
61
61
  rubocop-ast (>= 1.1.0)
62
62
  ruby-progressbar (1.11.0)
data/default.yml CHANGED
@@ -25,11 +25,7 @@ Metrics/AbcSize:
25
25
  Enabled: false
26
26
 
27
27
  Metrics/BlockLength:
28
- Exclude:
29
- - config/environments/development.rb
30
- - config/environments/production.rb
31
- - config/environments/test.rb
32
- - config/routes.rb
28
+ Enabled: false
33
29
 
34
30
  Metrics/MethodLength:
35
31
  Enabled: false
@@ -37,7 +33,6 @@ Metrics/MethodLength:
37
33
  Style/Documentation:
38
34
  Exclude:
39
35
  - app/controllers/**/*
40
- - app/controllers/application_controller.rb
41
36
  - app/helpers/application_helper.rb
42
37
  - app/models/application_record.rb
43
38
  - config/application.rb
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonstandard
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nonstandard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Dorsey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-20 00:00:00.000000000 Z
11
+ date: 2021-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop