pulis 0.1.18 → 0.1.32
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/rubocop.yml +10 -12
- data/lib/pulis/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 423df811103792b7a339f0e71de4b8130bc0061fd2b8ffa65e44d123129a48b3
|
4
|
+
data.tar.gz: 509521b0f1b2cc6fe8c371bfa8e4b3b21a454d3867f94e9ed0a23d10da38e9d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f160d5e2d86930795a1c3f52a68b9b87e1ed08b5688ba5f02a384a35512699355ec1bd5e7c0d454be4c146fab9989cd50d24ab5150cc9c44ba70ae008b9b38d3
|
7
|
+
data.tar.gz: 8a147e5ef4fee6f334525f545ed5430acb104a98083cbab6a2c6eddcb0e7b0db68287570a66f38ecbe5cb9cdc09b4bbf4a443837b315f184f2b433fb58429219
|
data/config/rubocop.yml
CHANGED
@@ -16,20 +16,21 @@ AllCops:
|
|
16
16
|
TargetRubyVersion: 2.5
|
17
17
|
# NOTE 4 系を利用している場合は書き換える
|
18
18
|
TargetRailsVersion: 5.0
|
19
|
+
NewCops: enable
|
19
20
|
|
20
|
-
AndOr:
|
21
|
+
Style/AndOr:
|
21
22
|
Enabled: false
|
22
23
|
|
23
|
-
CommentAnnotation:
|
24
|
+
Style/CommentAnnotation:
|
24
25
|
Enabled: false
|
25
26
|
|
26
|
-
Layout/
|
27
|
+
Layout/ParameterAlignment:
|
27
28
|
EnforcedStyle: with_fixed_indentation
|
28
29
|
|
29
30
|
Layout/CaseIndentation:
|
30
31
|
EnforcedStyle: end
|
31
32
|
|
32
|
-
Layout/
|
33
|
+
Layout/FirstHashElementIndentation:
|
33
34
|
Enabled: false
|
34
35
|
|
35
36
|
Layout/IndentationWidth:
|
@@ -74,7 +75,7 @@ Lint/UnusedMethodArgument:
|
|
74
75
|
Lint/UselessAssignment:
|
75
76
|
Enabled: true
|
76
77
|
|
77
|
-
Lint/
|
78
|
+
Lint/BinaryOperatorWithIdenticalOperands:
|
78
79
|
Enabled: true
|
79
80
|
|
80
81
|
Lint/Void:
|
@@ -97,7 +98,7 @@ Metrics/ClassLength:
|
|
97
98
|
Metrics/CyclomaticComplexity:
|
98
99
|
Max: 50
|
99
100
|
|
100
|
-
|
101
|
+
Layout/LineLength:
|
101
102
|
Enabled: false
|
102
103
|
|
103
104
|
Metrics/MethodLength:
|
@@ -114,7 +115,7 @@ Naming/PredicateName:
|
|
114
115
|
Naming/VariableNumber:
|
115
116
|
EnforcedStyle: snake_case
|
116
117
|
|
117
|
-
NumericLiterals:
|
118
|
+
Style/NumericLiterals:
|
118
119
|
MinDigits: 12
|
119
120
|
|
120
121
|
Performance/RedundantMatch:
|
@@ -135,7 +136,7 @@ Rails/HttpPositionalArguments:
|
|
135
136
|
Rails/Validation:
|
136
137
|
Enabled: true
|
137
138
|
|
138
|
-
RedundantSelf:
|
139
|
+
Style/RedundantSelf:
|
139
140
|
Enabled: false
|
140
141
|
|
141
142
|
Style/AsciiComments:
|
@@ -144,9 +145,6 @@ Style/AsciiComments:
|
|
144
145
|
Style/BlockDelimiters:
|
145
146
|
Enabled: false
|
146
147
|
|
147
|
-
Style/BracesAroundHashParameters:
|
148
|
-
EnforcedStyle: no_braces
|
149
|
-
|
150
148
|
Style/CaseEquality:
|
151
149
|
Enabled: false
|
152
150
|
|
@@ -201,7 +199,7 @@ Style/TrailingUnderscoreVariable:
|
|
201
199
|
Style/WhenThen:
|
202
200
|
Enabled: false
|
203
201
|
|
204
|
-
SingleLineMethods:
|
202
|
+
Style/SingleLineMethods:
|
205
203
|
Enabled: false
|
206
204
|
|
207
205
|
Style/MethodCallWithoutArgsParentheses:
|
data/lib/pulis/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.32
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sansan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|