rubocop-rubomatic-rails 1.6.0 → 1.7.0.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 +14 -0
- data/config/rails.yml +5 -5
- data/lib/rubocop/rubomatic-rails/version.rb +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc4bb9a14fb0320220b3cd421a2c6eefdc655a29950673c9c49dd4815a32e52a
|
4
|
+
data.tar.gz: aa9b93bed054566b1daa743c43cd2e3a482164633dbbd412781812c8d4cdc297
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba7d3bcfa131ada3f8400eed7c568cdbf8c693c48d9e8a38aee1e3ee6a5b34a6b818a97a29171f76884aaf3c3611fea25bd10e97f66431f3c0c125f225659805
|
7
|
+
data.tar.gz: e8322575b1fe7c1cbf33407ef51593517661b2b0ee8d517eaa16dc5491607ffe149f1b65e468730698cdf9ef15f200bdae704239e2e5940b584c5b461c8e8835
|
data/CHANGELOG.adoc
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
== 1.7.0
|
2
|
+
|
3
|
+
* The following cops will run on migration files for additional databases
|
4
|
+
|
5
|
+
** ``Rails/AddColumnIndex``
|
6
|
+
** ``Rails/BulkChangeTable``
|
7
|
+
** ``Rails/CreateTableWithTimestamps``
|
8
|
+
** ``Rails/MigrationClassName``
|
9
|
+
** ``Rails/NotNullColumn``
|
10
|
+
|
11
|
+
== 1.6.1 (2025-06-18)
|
12
|
+
|
13
|
+
* Upgrade to ``ruobcop-rubomatic 1.6.3``
|
14
|
+
|
1
15
|
== 1.6.0 (2025-06-12)
|
2
16
|
|
3
17
|
* Upgrade to ``ruobcop-rubomatic 1.6.0``
|
data/config/rails.yml
CHANGED
@@ -53,7 +53,7 @@ Rails/ActiveSupportOnLoad:
|
|
53
53
|
Rails/AddColumnIndex:
|
54
54
|
Enabled: true
|
55
55
|
Include:
|
56
|
-
- db
|
56
|
+
- db/*migrate*/**/*.rb
|
57
57
|
|
58
58
|
Rails/AfterCommitOverride:
|
59
59
|
Enabled: true
|
@@ -102,7 +102,7 @@ Rails/BulkChangeTable:
|
|
102
102
|
- mysql
|
103
103
|
- postgresql
|
104
104
|
Include:
|
105
|
-
- db
|
105
|
+
- db/*migrate*/**/*.rb
|
106
106
|
|
107
107
|
Rails/CompactBlank:
|
108
108
|
Enabled: true
|
@@ -119,7 +119,7 @@ Rails/ContentTag:
|
|
119
119
|
Rails/CreateTableWithTimestamps:
|
120
120
|
Enabled: true
|
121
121
|
Include:
|
122
|
-
- db
|
122
|
+
- db/*migrate*/**/*.rb
|
123
123
|
Exclude:
|
124
124
|
# Respect the `active_storage_variant_records` table of `*_create_active_storage_tables.active_storage.rb`
|
125
125
|
# auto-generated by `bin/rails active_storage:install` even if `created_at` is not specified.
|
@@ -349,7 +349,7 @@ Rails/MatchRoute:
|
|
349
349
|
Rails/MigrationClassName:
|
350
350
|
Enabled: true
|
351
351
|
Include:
|
352
|
-
- db
|
352
|
+
- db/*migrate*/**/*.rb
|
353
353
|
|
354
354
|
Rails/MultipleRoutePaths:
|
355
355
|
Enabled: true
|
@@ -364,7 +364,7 @@ Rails/NegateInclude:
|
|
364
364
|
Rails/NotNullColumn:
|
365
365
|
Enabled: false
|
366
366
|
Include:
|
367
|
-
- db
|
367
|
+
- db/*migrate*/**/*.rb
|
368
368
|
|
369
369
|
Rails/OrderById:
|
370
370
|
Enabled: false
|
@@ -4,11 +4,11 @@ module RuboCop
|
|
4
4
|
module RubomaticRails
|
5
5
|
module VERSION
|
6
6
|
MAJOR = 1
|
7
|
-
MINOR =
|
7
|
+
MINOR = 7
|
8
8
|
TINY = 0
|
9
9
|
|
10
10
|
# Set PRE to nil unless it's a pre-release (beta, rc, etc.)
|
11
|
-
PRE =
|
11
|
+
PRE = 'rc.1'
|
12
12
|
|
13
13
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.').freeze
|
14
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-rubomatic-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0.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: 2025-
|
11
|
+
date: 2025-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lint_roller
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.6.
|
61
|
+
version: 1.6.3
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.6.
|
68
|
+
version: 1.6.3
|
69
69
|
description:
|
70
70
|
email:
|
71
71
|
- documents@brandsinsurance.com
|
@@ -108,9 +108,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
108
108
|
version: 3.0.1
|
109
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- - "
|
111
|
+
- - ">"
|
112
112
|
- !ruby/object:Gem::Version
|
113
|
-
version:
|
113
|
+
version: 1.3.1
|
114
114
|
requirements: []
|
115
115
|
rubygems_version: 3.2.15
|
116
116
|
signing_key:
|