nxt_cop 1.0.17 → 1.0.18

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: 64310b05a2d784b51686df4dc7cc35e81e9ebe0b575b817bb9a4265fa8f5fe7e
4
- data.tar.gz: 56eb0b4ac48e95508c4e042ec72e02f2c7f8f74b227cecb8f3aa7cd58aa17061
3
+ metadata.gz: 6e74a264746f59bb552116446bddd4bef5a845e348ecc0e0f6c0d836c972130f
4
+ data.tar.gz: decc3193febf8c9e6cae676e9caf3b44f4f6e9c9a49a9fe6c65249e26f4280c5
5
5
  SHA512:
6
- metadata.gz: ba56942235bc0f2e67aaf6dbde527320cdb253e7ddbd790cdbfd1f6b98110a8dc53b325e63a52ad8ab1f312d55742ff4fb534cbc6c197fc48dff9d917d7d93b1
7
- data.tar.gz: 3468be10fb701f0bf42343b1d50abf83765ec8f7b6fc10937954a4f0e355d060550024cd39995777ed36557da799b3670c15b83fff16f8918a3cdf61dbddd618
6
+ metadata.gz: 175aed4523a2b4de34251cdc8afe873617f342f1773da0fc3e1d7c077cbd1e1bde4cf12755551c01f3f6854bd4e95aa75f69a2cc8fe7c4ccd5056293d698bc69
7
+ data.tar.gz: 6c160ad53d81f080cdf61cb3e7bfb6910a6e0b4b1bea4deb28a9bf6e46a4ee58edac5aebfe34788e9a29f6b515872106e5c3107e1955673a51df573c56a5c372
data/CHANGELOG.md CHANGED
@@ -1,9 +1,16 @@
1
+ # v1.0.18
2
+
3
+ ## What's Changed
4
+ * Add `Rails/Date` cop ([#50](https://github.com/nxt-insurance/nxt_cop/pull/50))
5
+
6
+ **Full Changelog**: https://github.com/nxt-insurance/nxt_cop/compare/v1.0.17...v1.0.18
7
+
1
8
  # v1.0.17 2022-08-19
2
9
 
3
10
  ## What's Changed
4
11
  * Adjust severity of the recently added Lint/SymbolConversion cop ([#45](https://github.com/nxt-insurance/nxt_cop/pull/45))
5
12
 
6
- **Full Changelog**: https://github.com/nxt-insurance/nxt_cop/compare/v1.0.15...v1.0.16
13
+ **Full Changelog**: https://github.com/nxt-insurance/nxt_cop/compare/v1.0.16...v1.0.17
7
14
 
8
15
  # v1.0.16 2022-07-07
9
16
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nxt_cop (1.0.17)
4
+ nxt_cop (1.0.18)
5
5
  rubocop (~> 1.35.0)
6
6
  rubocop-rails (~> 2.8)
7
7
  rubocop-rspec (~> 2.12)
@@ -9,7 +9,7 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (7.0.3.1)
12
+ activesupport (7.0.4)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
14
  i18n (>= 1.6, < 2)
15
15
  minitest (>= 5.1)
@@ -23,12 +23,12 @@ GEM
23
23
  parallel (1.22.1)
24
24
  parser (3.1.2.1)
25
25
  ast (~> 2.4.1)
26
- rack (2.2.4)
26
+ rack (3.0.0)
27
27
  rainbow (3.1.1)
28
28
  rake (13.0.6)
29
- regexp_parser (2.5.0)
29
+ regexp_parser (2.6.0)
30
30
  rexml (3.2.5)
31
- rubocop (1.35.0)
31
+ rubocop (1.35.1)
32
32
  json (~> 2.3)
33
33
  parallel (~> 1.10)
34
34
  parser (>= 3.1.2.1)
@@ -40,16 +40,16 @@ GEM
40
40
  unicode-display_width (>= 1.4.0, < 3.0)
41
41
  rubocop-ast (1.21.0)
42
42
  parser (>= 3.1.1.0)
43
- rubocop-rails (2.15.2)
43
+ rubocop-rails (2.16.1)
44
44
  activesupport (>= 4.2.0)
45
45
  rack (>= 1.1)
46
- rubocop (>= 1.7.0, < 2.0)
47
- rubocop-rspec (2.12.1)
48
- rubocop (~> 1.31)
46
+ rubocop (>= 1.33.0, < 2.0)
47
+ rubocop-rspec (2.13.2)
48
+ rubocop (~> 1.33)
49
49
  ruby-progressbar (1.11.0)
50
50
  tzinfo (2.0.5)
51
51
  concurrent-ruby (~> 1.0)
52
- unicode-display_width (2.2.0)
52
+ unicode-display_width (2.3.0)
53
53
 
54
54
  PLATFORMS
55
55
  ruby
data/default.yml CHANGED
@@ -111,6 +111,8 @@ Style/Semicolon:
111
111
  - spec/**/*
112
112
  Rails/TimeZone:
113
113
  Enabled: true
114
+ Rails/Date:
115
+ Enabled: true
114
116
  RSpec:
115
117
  Enabled: false
116
118
  RSpec/Focus:
@@ -1,3 +1,3 @@
1
1
  module NxtCop
2
- VERSION = '1.0.17'.freeze
2
+ VERSION = '1.0.18'.freeze
3
3
  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.17
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Livingstone
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop