rubomatic 1.2.0.pre.rc.1 → 1.3.0.pre.rc.1

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: 44b7acbf69f4c8fe25321bc98d89e9fad7529ca77cdf89cfa4636ef5f8b09f37
4
- data.tar.gz: b469de2d58ed09471357c3b8e7b956ac6c40ca15f06e81bb4ad76eb3e3109b14
3
+ metadata.gz: a449b8bb35bab71f1821117e4e58f1274e30a7f79a5a7a8eb4aed3fc428b5001
4
+ data.tar.gz: 1a651e9a92d13316b29dc15215ce0b6522c9a4bd0b53c199043932f0c5acba49
5
5
  SHA512:
6
- metadata.gz: 62df5b3a1dc75c13be2596e9d940b2510bfaac78d1bbb447d278b3e15f7e1abe89f28e987e359c5c5bbb4f60496daf7917105ffb37597a026148c8b8c67e247c
7
- data.tar.gz: 2f9590d72edbbd8d66822e7a62753bea6d540488540c2106e0418f0e3c019ac2fd2818a89c436f88c2a7caaae197c8b1747200cd9dc367ec505397a6c6d10078
6
+ metadata.gz: 22ff2d7618a1e42830a2e5ded1c5861624138d16479298e55e0e9ae564f8a6635a85419fec7f818ed89bdd7ded2e7b136a31bd56e6d5b6bd0ae59bfa399241b1
7
+ data.tar.gz: d7a69f450e67888a3fb572573affe0b244f76ab191655c39209c46a4de14abaf4f4d1d7b2b9a95ed97d6d8c92f03e44e8826e121984193cee42e1801f098a3d1
data/CHANGELOG.adoc CHANGED
@@ -1,3 +1,35 @@
1
+ == 1.3.0
2
+
3
+ === Config
4
+
5
+ * Enabled ``Style/RedundantLineContinuation``
6
+ * Enabled ``Style/DataInheritance`` for Ruby 3.2+
7
+
8
+ === Dependencies
9
+
10
+ * `rubocop@1.49.0`
11
+ * `rubocop-brands_insurance@1.3.0`
12
+
13
+ == 1.2.0
14
+
15
+ === Config
16
+
17
+ * Added ``Exclude: [lib/tasks/seeds]`` to ``Metrics/CollectionLiteralLength``
18
+
19
+ == 1.1.0
20
+
21
+ === Config
22
+
23
+ * Enable `Metrics/CollectionLiteralLength`
24
+ * Enable `Style/MinMaxComparison`
25
+ * Enable `Style/MapToSet`
26
+ * Enable `Rails/ResponseParsedBody`
27
+
28
+ === Dependencies
29
+
30
+ * `rubocop@1.48.0`
31
+ * `rubocop-brands_insurance@1.2.0`
32
+
1
33
  == 1.0.0
2
34
 
3
35
  * Initial public release
data/configs/style.yml CHANGED
@@ -517,6 +517,11 @@ Style/Copyright:
517
517
  Notice: '^Copyright (\(c\) )?2[0-9]{3} .+'
518
518
  AutocorrectNotice: ''
519
519
 
520
+ Style/DataInheritance:
521
+ Description: Checks for inheritance from Data.define.
522
+ Enabled: <%= ENV['RUBY_MAJOR'].to_f >= 3.2 %>
523
+ VersionAdded: '1.49'
524
+
520
525
  Style/DateTime:
521
526
  Description: 'Use Time over DateTime.'
522
527
  StyleGuide: '#date-time'
@@ -1905,6 +1910,11 @@ Style/RedundantInterpolation:
1905
1910
  VersionAdded: '0.76'
1906
1911
  VersionChanged: '1.30'
1907
1912
 
1913
+ Style/RedundantLineContinuation:
1914
+ Description: Check for redundant line continuation.
1915
+ Enabled: true
1916
+ VersionAdded: '1.49'
1917
+
1908
1918
  Style/RedundantParentheses:
1909
1919
  Description: "Checks for parentheses that seem not to serve any purpose."
1910
1920
  Enabled: true
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rubomatic
4
- VERSION = '1.2.0-rc.1'
4
+ VERSION = '1.3.0-rc.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubomatic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0.pre.rc.1
4
+ version: 1.3.0.pre.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brands Insurance
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-14 00:00:00.000000000 Z
11
+ date: 2023-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.48.0
19
+ version: 1.49.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: 1.48.0
26
+ version: 1.49.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-brands_insurance
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.2.0
33
+ version: 1.3.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.2.0
40
+ version: 1.3.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop-performance
43
43
  requirement: !ruby/object:Gem::Requirement