rubocop-petal 0.3.0 → 0.3.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.md +4 -0
- data/Gemfile.lock +1 -1
- data/config/default.yml +1 -1
- data/lib/rubocop/petal/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85df3da29b781802cb5b82029453d2c2045f6940de4379684593eb2bbac8e293
|
|
4
|
+
data.tar.gz: b139d8a8158cb1be68636d86ed22fc3edc99df08f85c476b03800081f032d1b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13450196ed8434f7f47b228ff05f2d4cd4890bd0dda71e2e7a8bb17de4c4a064f4946e185b0edf0dfbbabbb59a6b2d6c4840b4ef091074f026de34be0405f67c
|
|
7
|
+
data.tar.gz: 3d622112d46ce09c5e351f90420b6d35a391204ca4af35c5de54e65c9df39e1ac608608aef8995e3a30d6adbeb739b8f77452146eb41f6d7f14571cd1be33e23
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
# main
|
|
4
4
|
|
|
5
|
+
# v0.3.1
|
|
6
|
+
|
|
7
|
+
Correct cop name `Migration/SchemaStatementsMethods` in config ([#17](https://github.com/petalmd/rubocop-petal/pull/17))
|
|
8
|
+
|
|
5
9
|
# v0.3.0
|
|
6
10
|
|
|
7
11
|
* Added cop `Added Migration/ForeignKeyOption` ([#11](https://github.com/petalmd/rubocop-petal/pull/11))
|
data/Gemfile.lock
CHANGED
data/config/default.yml
CHANGED
|
@@ -11,7 +11,7 @@ Migration/ForeignKeyOption:
|
|
|
11
11
|
Include:
|
|
12
12
|
- db/migrate/**
|
|
13
13
|
|
|
14
|
-
Migration/
|
|
14
|
+
Migration/SchemaStatementsMethods:
|
|
15
15
|
Description: 'Suggest to use SchemaStatements methods already defined in a migration class.'
|
|
16
16
|
Enabled: true
|
|
17
17
|
Include:
|