rubocop-safe_migrations 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +8 -1
- data/config/default.yml +4 -1
- data/lib/rubocop/safe_migrations/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: 07241eabc33327dd417a7a7c71eda773343e4b8914c8203094aae772c7b14d94
|
4
|
+
data.tar.gz: 13d34888fe1d7631f9daa2ea53e8005eefdb4b93facc4d47ce3b27d8a4e08484
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4a0631fb0a2c4901572f4dc777114c63ffef18580defb1df8f4fd93f8267681213f353a70653a8a79fa4e9f0bce4c9e39c72882cdeee9c9a552942164d1fd1e
|
7
|
+
data.tar.gz: 015aef4b18a0c7e2b519174290bfc63b0389ce1b28f3d9dec67232aa7ed659ff51689c01b5f5f0740a0130190495840298d9ef13a29caec04d85866636aa780b
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -20,7 +20,14 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
After installed,
|
23
|
+
After installed, you have to tell rubocop to require this new cops. For doing this, add this config to your .rubocop.yml file:
|
24
|
+
|
25
|
+
```yaml
|
26
|
+
require:
|
27
|
+
- rubocop-safe_migrations
|
28
|
+
```
|
29
|
+
|
30
|
+
Be sure that you are not excluding migrate files for all cops either.
|
24
31
|
|
25
32
|
The cops that will be checked are:
|
26
33
|
|
data/config/default.yml
CHANGED