rubomatic 1.2.0 → 1.3.0.pre.rc.1
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 +4 -4
- data/CHANGELOG.adoc +32 -0
- data/configs/style.yml +10 -0
- data/lib/rubomatic/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a449b8bb35bab71f1821117e4e58f1274e30a7f79a5a7a8eb4aed3fc428b5001
|
4
|
+
data.tar.gz: 1a651e9a92d13316b29dc15215ce0b6522c9a4bd0b53c199043932f0c5acba49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/rubomatic/version.rb
CHANGED
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.
|
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
|
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.
|
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.
|
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.
|
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.
|
40
|
+
version: 1.3.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rubocop-performance
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -112,9 +112,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
112
|
version: 3.0.1
|
113
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - ">"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 1.3.1
|
118
118
|
requirements: []
|
119
119
|
rubygems_version: 3.2.15
|
120
120
|
signing_key:
|