fablicop 1.0.2 → 1.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/README.md +2 -4
- data/config/.base_rubocop.yml +6 -0
- data/lib/fablicop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 918a60fe667d7c27167b11bae0add122cac9929c
|
|
4
|
+
data.tar.gz: a0305aaaaa05c46b0e0c0f47cb32bdb83784cf2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1627367aec646bf71af683cc15046ffde6a737855f610aaf26678e230b36db469b81979b3e5d6805d60a9878b3b0813b69a0c94b8441a99c2a21b4cab859ba2
|
|
7
|
+
data.tar.gz: 3dd625e93a7149b54e6792d4bece5c36b24c7759b911aa4154809bb3193842d255a82eefd11915455e7ef681328d05119734be3314a30eab99db85b32a90b167
|
data/README.md
CHANGED
|
@@ -15,16 +15,14 @@ bundle exec fablicop init
|
|
|
15
15
|
```yaml
|
|
16
16
|
inherit_gem:
|
|
17
17
|
fablicop:
|
|
18
|
-
- "config
|
|
18
|
+
- "config/.base_rubocop.yml"
|
|
19
19
|
# uncomment if use rails cops
|
|
20
20
|
# - "config/rails.yml"
|
|
21
21
|
# uncomment if use rspec cops
|
|
22
22
|
# - "config/rspec.yml"
|
|
23
23
|
|
|
24
24
|
AllCops:
|
|
25
|
-
TargetRubyVersion: 2.
|
|
26
|
-
# uncomment if use rails cops
|
|
27
|
-
# TargetRailsVersion: 5.1
|
|
25
|
+
TargetRubyVersion: 2.3
|
|
28
26
|
```
|
|
29
27
|
|
|
30
28
|
```sh
|
data/config/.base_rubocop.yml
CHANGED
|
@@ -135,6 +135,12 @@ Style/DefWithParentheses:
|
|
|
135
135
|
Layout/DotPosition:
|
|
136
136
|
Enabled: false
|
|
137
137
|
|
|
138
|
+
# classが入れ子になった場合、テストの順番によってはエラーになりうる
|
|
139
|
+
Style/ClassAndModuleChildren:
|
|
140
|
+
Exclude:
|
|
141
|
+
- "test/**/*.rb"
|
|
142
|
+
- "spec/**/*.rb"
|
|
143
|
+
|
|
138
144
|
##################### Layout ##################################
|
|
139
145
|
# 引数前のスペースは複数許可
|
|
140
146
|
Layout/SpaceBeforeFirstArg:
|
data/lib/fablicop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fablicop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tommy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-
|
|
13
|
+
date: 2018-07-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rubocop
|