nxt_cop 1.0.13 → 1.0.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 693dee6a08736d3ed135465a31d306818c67297e76201fb103bf598473904ec2
4
- data.tar.gz: 3ebc1dda244090349ae5af05d69635c5a2f65e0743a5433191192b5314bd5a13
3
+ metadata.gz: 2f8ca722a37d92cce8e319a8c5b960aaa85e59305ba962865a34a1fd67fcef94
4
+ data.tar.gz: a0e45473098d1cf3ff7dca290216c8c1e047e9328bd8cee5211e81abab18ca76
5
5
  SHA512:
6
- metadata.gz: 6518c9266fe044a455cf35e4d82a55d0224e70a4872cfef901b6bf07cc6ee98714bdac917d6f6b757f1bc3516a7d8d9dce0790cc91c2b0eb65da362ec713e6d7
7
- data.tar.gz: dac1ea95190b53635e261fc66167bf465d1806dbae5e24d6f5a8f72fa8711d167fba63237a76d36c4a80d3117b5cf637466be486e7af6474d678052401a9979b
6
+ metadata.gz: c6a92736ce51ada736dffb01fc0ae69d5f6ca4e5165a187a7b5d98964d115cb7c3a4746bb39981a4c239dc4950137c296b0f8ce114ee4f00e4e7281e314551ea
7
+ data.tar.gz: 6adc418f9df86917725f001cc9b9f1f95b8f31cfe45e67d8255d374af452750199837c2f362a7b1d09d32a5352ff4c4070e4e34d04f82400b46a70c79376dfe0
data/.gitignore CHANGED
@@ -7,6 +7,7 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .DS_Store
10
+ .idea/
10
11
 
11
12
  # rspec failure tracking
12
13
  .rspec_status
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # v1.0.14 2022-05-04
2
+
3
+ ## What's Changed
4
+ * 🚨 [security] Upgrade rubocop: 0.92.0 → 1.25.1 (major) by @depfu in https://github.com/nxt-insurance/nxt_cop/pull/19
5
+ * Upgrade rubocop: 1.25.1 → 1.28.2 (minor) by @depfu in https://github.com/nxt-insurance/nxt_cop/pull/26
6
+ * Allow including repos use their own ruby version by @shalvah-gs in https://github.com/nxt-insurance/nxt_cop/pull/27
7
+ * Update rubocop-rails: 2.13.2 → 2.14.2 (minor) by @depfu in https://github.com/nxt-insurance/nxt_cop/pull/22
8
+
9
+ **Full Changelog**: https://github.com/nxt-insurance/nxt_cop/compare/v1.0.13...v1.0.14
10
+
1
11
  # v1.0.12 2020-12-29
2
12
 
3
13
  ### Update Gems
data/Gemfile.lock CHANGED
@@ -1,43 +1,43 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nxt_cop (1.0.13)
5
- rubocop (= 1.25.1)
4
+ nxt_cop (1.0.14)
5
+ rubocop (= 1.28.2)
6
6
  rubocop-rails (~> 2.8)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.0.2)
11
+ activesupport (7.0.2.4)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 1.6, < 2)
14
14
  minitest (>= 5.1)
15
15
  tzinfo (~> 2.0)
16
16
  ast (2.4.2)
17
- concurrent-ruby (1.1.9)
18
- i18n (1.9.1)
17
+ concurrent-ruby (1.1.10)
18
+ i18n (1.10.0)
19
19
  concurrent-ruby (~> 1.0)
20
20
  minitest (5.15.0)
21
- parallel (1.21.0)
22
- parser (3.1.0.0)
21
+ parallel (1.22.1)
22
+ parser (3.1.2.0)
23
23
  ast (~> 2.4.1)
24
24
  rack (2.2.3)
25
25
  rainbow (3.1.1)
26
26
  rake (13.0.6)
27
- regexp_parser (2.2.0)
27
+ regexp_parser (2.3.1)
28
28
  rexml (3.2.5)
29
- rubocop (1.25.1)
29
+ rubocop (1.28.2)
30
30
  parallel (~> 1.10)
31
31
  parser (>= 3.1.0.0)
32
32
  rainbow (>= 2.2.2, < 4.0)
33
33
  regexp_parser (>= 1.8, < 3.0)
34
34
  rexml
35
- rubocop-ast (>= 1.15.1, < 2.0)
35
+ rubocop-ast (>= 1.17.0, < 2.0)
36
36
  ruby-progressbar (~> 1.7)
37
37
  unicode-display_width (>= 1.4.0, < 3.0)
38
- rubocop-ast (1.15.1)
39
- parser (>= 3.0.1.1)
40
- rubocop-rails (2.13.2)
38
+ rubocop-ast (1.17.0)
39
+ parser (>= 3.1.1.0)
40
+ rubocop-rails (2.14.2)
41
41
  activesupport (>= 4.2.0)
42
42
  rack (>= 1.1)
43
43
  rubocop (>= 1.7.0, < 2.0)
data/default.yml CHANGED
@@ -11,7 +11,6 @@ AllCops:
11
11
  - db/migrate/*
12
12
  - vendor/**/*
13
13
  - node_modules/**/*
14
- TargetRubyVersion: 2.6
15
14
  DisabledByDefault: true
16
15
  Layout/DotPosition:
17
16
  EnforcedStyle: trailing
@@ -100,6 +99,7 @@ Style/WordArray:
100
99
  Enabled: true
101
100
  Style/HashSyntax:
102
101
  Enabled: true
102
+ EnforcedShorthandSyntax: either
103
103
  Security:
104
104
  Enabled: true
105
105
  Style/Semicolon:
@@ -1,3 +1,3 @@
1
1
  module NxtCop
2
- VERSION = '1.0.13'.freeze
2
+ VERSION = '1.0.14'.freeze
3
3
  end
data/nxt_cop.gemspec CHANGED
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
33
  spec.require_paths = ['lib']
34
34
 
35
- spec.add_dependency 'rubocop', '1.25.1'
35
+ spec.add_dependency 'rubocop', '1.28.2'
36
36
  spec.add_dependency 'rubocop-rails', '~> 2.8'
37
37
  spec.add_development_dependency 'bundler', '~> 2.1'
38
38
  spec.add_development_dependency 'rake', '~> 13.0'
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.13
4
+ version: 1.0.14
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: 2022-02-10 00:00:00.000000000 Z
11
+ date: 2022-05-04 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.25.1
19
+ version: 1.28.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.25.1
26
+ version: 1.28.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rails
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,8 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '13.0'
69
- description:
70
- email:
69
+ description:
70
+ email:
71
71
  executables: []
72
72
  extensions: []
73
73
  extra_rdoc_files: []
@@ -95,7 +95,7 @@ metadata:
95
95
  homepage_uri: https://github.com/nxt-insurance/nxt_cop
96
96
  source_code_uri: https://github.com/nxt-insurance/nxt_cop
97
97
  changelog_uri: https://github.com/nxt-insurance/nxt_cop/CHANGELOG.md
98
- post_install_message:
98
+ post_install_message:
99
99
  rdoc_options: []
100
100
  require_paths:
101
101
  - lib
@@ -110,8 +110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  requirements: []
113
- rubygems_version: 3.1.6
114
- signing_key:
113
+ rubygems_version: 3.3.11
114
+ signing_key:
115
115
  specification_version: 4
116
116
  summary: Getsafe shared Rubocop.
117
117
  test_files: []