rubocop-athix 0.0.2 → 0.0.3
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/config/rails.yml +25 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90ae60b9d4a980bbfb0762e6d2cbc9877207b303246a3b90d2c77fb7bfafd859
|
|
4
|
+
data.tar.gz: 58a61641b60f6da57f1ab34844ddcde44ad33f7b044b1441af74db4e6d4d881c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9e0f63024fa5103476756cb40a69d477379446fa7cf4f4a519db5ad3d59538d70933b2626215135c0b1f16069e458265da0dd766579c557573aa483f079c2d1
|
|
7
|
+
data.tar.gz: 806b69d8681e24848dd25e7ddb327ad5f95269033d9e3985d0ef7a3bc410dbf606637d96b018d1c301c04c89257f86bf5aa6a399a58b0faad3275a56f812c472
|
data/config/rails.yml
CHANGED
|
@@ -8,7 +8,32 @@ AllCops:
|
|
|
8
8
|
Exclude:
|
|
9
9
|
- 'bin/**/*'
|
|
10
10
|
- 'coverage/**/*'
|
|
11
|
+
- 'db/schema.rb'
|
|
11
12
|
- 'lib/templates/**/*'
|
|
12
13
|
- 'log/**/*'
|
|
13
14
|
- 'tmp/**/*'
|
|
14
15
|
- 'vendor/**/*'
|
|
16
|
+
|
|
17
|
+
##
|
|
18
|
+
# In the rest of the app, using the logger makes sense. However, it seems to
|
|
19
|
+
# not play nicely when generating the seeds, and `puts` is pretty
|
|
20
|
+
# straight-forward.
|
|
21
|
+
#
|
|
22
|
+
Rails/Output:
|
|
23
|
+
Exclude:
|
|
24
|
+
- 'db/seeds/*.rb'
|
|
25
|
+
- 'db/seeds.rb'
|
|
26
|
+
|
|
27
|
+
##
|
|
28
|
+
# This cop makes no sense in the context of migrations.
|
|
29
|
+
#
|
|
30
|
+
Metrics/AbcSize:
|
|
31
|
+
Exclude:
|
|
32
|
+
- 'db/migrate/*.rb'
|
|
33
|
+
|
|
34
|
+
##
|
|
35
|
+
# This cop makes no sense in the context of migrations.
|
|
36
|
+
#
|
|
37
|
+
Metrics/MethodLength:
|
|
38
|
+
Exclude:
|
|
39
|
+
- 'db/migrate/*.rb'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-athix
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Buker
|
|
@@ -85,8 +85,8 @@ licenses:
|
|
|
85
85
|
- MIT
|
|
86
86
|
metadata:
|
|
87
87
|
bug_tracker_uri: https://github.com/athix/rubocop-athix/issues
|
|
88
|
-
changelog_uri: https://github.com/athix/rubocop-athix/releases/tag/v0.0.
|
|
89
|
-
source_code_uri: https://github.com/athix/rubocop-athix/tree/v0.0.
|
|
88
|
+
changelog_uri: https://github.com/athix/rubocop-athix/releases/tag/v0.0.3
|
|
89
|
+
source_code_uri: https://github.com/athix/rubocop-athix/tree/v0.0.3
|
|
90
90
|
post_install_message:
|
|
91
91
|
rdoc_options: []
|
|
92
92
|
require_paths:
|