nxt_cop 1.0.9 → 1.0.10

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: fcd50bfc83a3a855887af8c1320ad148c8fb4cfe99e309be3baf9946be60add5
4
- data.tar.gz: d398ae0417669dda109924148d52e84c884f124276c2bff22f88ddd1d87b27c5
3
+ metadata.gz: a4bf693ad8606fada3e696c81e1274e075e84e1d3c56b7c883f3f81aed197798
4
+ data.tar.gz: 70ca555c9159edbcb9da659b55be5f3970852189cffd4cc7bf9c9bf6decc6c8d
5
5
  SHA512:
6
- metadata.gz: d9fc1f21d9a03515961eee7e991f7f8de8a7bf09c6333364de5a9e3ca09490f97ca1fc23b8e7b968d31b8b8fad5f922214ae26250e8bd9a7279e48cefc1dd98e
7
- data.tar.gz: a24a76aea16ed66696b12fb6f16482e7c0119b6ce0d09ed8bab9f629ace64285b1826d7ea3cfb56da2e7ff8b99cab1381943e16a6ad6de2d9c4d8e04c9e636ab
6
+ metadata.gz: 4e27daf335c8e27d04e41faa249102036f69a7401156e23b9bc7bf7de8c1dfc429a47fa99e88a6d3bdb92208fed4b83e5b6fad3b93aa39a5846597207a3e6043
7
+ data.tar.gz: 0bc9ea7e6f0b4bdf3f59acc4e03c840168393919e700b4ac0d643b94dd366690e09212147c1c066eae2a8d7a65d3cae30bedb682d8a97c625768cfd9f176f8e4
@@ -1 +1,2 @@
1
- inherit_from: default.yml
1
+ inherit_from: default.yml
2
+ require: rubocop-rails
@@ -1,3 +1,8 @@
1
+ # v1.0.10 2020-12-01
2
+
3
+ ### Added
4
+ - `Style/HashSyntax`
5
+
1
6
  # v1.0.9 2020-10-15
2
7
 
3
8
  ### Added
@@ -38,4 +43,4 @@ Updated Rubocop Version
38
43
 
39
44
  ### Removed
40
45
 
41
- - Gemfile.lock from .gitignore
46
+ - Gemfile.lock from .gitignore
@@ -1,16 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nxt_cop (1.0.9)
4
+ nxt_cop (1.0.10)
5
5
  rubocop (= 0.92.0)
6
+ rubocop-rails (~> 2.8)
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
9
10
  specs:
11
+ activesupport (6.0.3.4)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 0.7, < 2)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ zeitwerk (~> 2.2, >= 2.2.2)
10
17
  ast (2.4.1)
11
- parallel (1.19.2)
18
+ concurrent-ruby (1.1.7)
19
+ i18n (1.8.5)
20
+ concurrent-ruby (~> 1.0)
21
+ minitest (5.14.2)
22
+ parallel (1.20.0)
12
23
  parser (2.7.2.0)
13
24
  ast (~> 2.4.1)
25
+ rack (2.2.3)
14
26
  rainbow (3.0.0)
15
27
  rake (13.0.1)
16
28
  regexp_parser (1.8.2)
@@ -24,10 +36,18 @@ GEM
24
36
  rubocop-ast (>= 0.5.0)
25
37
  ruby-progressbar (~> 1.7)
26
38
  unicode-display_width (>= 1.4.0, < 2.0)
27
- rubocop-ast (0.8.0)
39
+ rubocop-ast (1.1.1)
28
40
  parser (>= 2.7.1.5)
41
+ rubocop-rails (2.8.1)
42
+ activesupport (>= 4.2.0)
43
+ rack (>= 1.1)
44
+ rubocop (>= 0.87.0)
29
45
  ruby-progressbar (1.10.1)
46
+ thread_safe (0.3.6)
47
+ tzinfo (1.2.8)
48
+ thread_safe (~> 0.1)
30
49
  unicode-display_width (1.7.0)
50
+ zeitwerk (2.4.1)
31
51
 
32
52
  PLATFORMS
33
53
  ruby
data/README.md CHANGED
@@ -40,7 +40,7 @@ Now, run:
40
40
  $ bundle exec rubocop
41
41
  ```
42
42
 
43
- You do not need to include rubocop directly in your application's dependencies. nxt_copt will include a specific version of `rubocop` that is shared across all projects.
43
+ You do not need to include rubocop directly in your application's dependencies. nxt_cop will include a specific version of `rubocop` that is shared across all projects.
44
44
 
45
45
  It is also possible to override styles or add styles to your application.
46
46
 
@@ -95,8 +95,12 @@ Style/TrailingCommaInArguments:
95
95
  Enabled: true
96
96
  Style/WordArray:
97
97
  Enabled: true
98
+ Style/HashSyntax:
99
+ Enabled: true
98
100
  Security:
99
101
  Enabled: true
100
102
  Style/Semicolon:
101
103
  Exclude:
102
104
  - spec/**/*
105
+ Rails/TimeZone:
106
+ Enabled: true
@@ -1,3 +1,3 @@
1
1
  module NxtCop
2
- VERSION = '1.0.9'.freeze
2
+ VERSION = '1.0.10'.freeze
3
3
  end
@@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.require_paths = ['lib']
33
33
 
34
34
  spec.add_dependency 'rubocop', '0.92.0'
35
+ spec.add_dependency 'rubocop-rails', '~> 2.8'
35
36
  spec.add_development_dependency 'bundler', '~> 2.1'
36
37
  spec.add_development_dependency 'rake', '~> 13.0'
37
38
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nxt_cop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Livingstone
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-22 00:00:00.000000000 Z
11
+ date: 2020-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.92.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.8'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -52,8 +66,8 @@ dependencies:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
68
  version: '13.0'
55
- description:
56
- email:
69
+ description:
70
+ email:
57
71
  executables: []
58
72
  extensions: []
59
73
  extra_rdoc_files: []
@@ -81,7 +95,7 @@ metadata:
81
95
  homepage_uri: https://github.com/nxt-insurance/nxt_cop
82
96
  source_code_uri: https://github.com/nxt-insurance/nxt_cop
83
97
  changelog_uri: https://github.com/nxt-insurance/nxt_cop/CHANGELOG.md
84
- post_install_message:
98
+ post_install_message:
85
99
  rdoc_options: []
86
100
  require_paths:
87
101
  - lib
@@ -96,8 +110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
110
  - !ruby/object:Gem::Version
97
111
  version: '0'
98
112
  requirements: []
99
- rubygems_version: 3.0.3
100
- signing_key:
113
+ rubygems_version: 3.1.4
114
+ signing_key:
101
115
  specification_version: 4
102
116
  summary: Getsafe shared Rubocop.
103
117
  test_files: []