k_builder 0.0.62 → 0.0.63
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/k_builder/commands/rubo_cop_command.rb +1 -1
- data/lib/k_builder/version.rb +1 -1
- metadata +1 -2
- data/~/last_cop.txt +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 260817fcc90386176ab82712c52a9a15e5a822b04f348a1b3f5b9ba7ea57c0dd
|
4
|
+
data.tar.gz: 68587734f564fac66c1fe8378cb417f81a88539cfa1cb58f08d34a29dca288ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57099e14149c32c39e02d85322bfa241ba5525ffe939a59824a21a67738db77a4fae2eb070cb777feb85dcaf9aa7113d107a53ed2be15e1219607a7f271f4852
|
7
|
+
data.tar.gz: e2b5a3aa292859d76c69f70ff0e99d20fd2b0f5ea67be17c20f4cf338f3c5be5fb37370528f44c64ad2376a8b22f1ecd21f011581f688b72dbf60cb7f830b5c0
|
@@ -55,7 +55,7 @@ module KBuilder
|
|
55
55
|
cli_options << '-a' if fix_safe
|
56
56
|
cli_options << '-A' if fix_unsafe
|
57
57
|
cli_options << '--config' << rubo_config_file if rubo_config_file
|
58
|
-
cli_options << '--out' << '~/last_cop.txt' unless show_console
|
58
|
+
cli_options << '--out' << File.expand_path('~/last_cop.txt') unless show_console
|
59
59
|
cli_options << file_pattern
|
60
60
|
cli_options
|
61
61
|
end
|
data/lib/k_builder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: k_builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.63
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Cruwys
|
@@ -123,7 +123,6 @@ files:
|
|
123
123
|
- usage/_out5.png
|
124
124
|
- usage/_usage_folder_after.png
|
125
125
|
- usage/_usage_folder_before.png
|
126
|
-
- "~/last_cop.txt"
|
127
126
|
homepage: http://appydave.com
|
128
127
|
licenses:
|
129
128
|
- MIT
|
data/~/last_cop.txt
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
== /var/folders/jh/nffr8l5j4rzgc7s386gj770r0000gn/T/rspec-20210701-95573-12q1az6/make-pretty.rb ==
|
2
|
-
C: 1: 1: Naming/FileName: The name of this source file (make-pretty.rb) should use snake_case.
|
3
|
-
C: 1: 1: [Corrected] Style/FrozenStringLiteralComment: Missing frozen string literal comment.
|
4
|
-
C: 2: 1: [Corrected] Layout/EmptyLineAfterMagicComment: Add an empty line after magic comments.
|
5
|
-
C: 2: 1: [Corrected] Layout/IndentationWidth: Use 2 (not 0) spaces for indentation.
|
6
|
-
C: 2: 1: [Corrected] Style/SingleLineMethods: Avoid single-line method definitions.
|
7
|
-
C: 2: 19: [Corrected] Layout/SpaceAfterComma: Space missing after comma.
|
8
|
-
W: 2: 20: [Corrected] Lint/UnusedMethodArgument: Unused method argument - xyz. If it's necessary, use _ or _xyz as an argument name to indicate that it won't be used.
|
9
|
-
C: 2: 30: [Corrected] Layout/SpaceAroundOperators: Surrounding space missing for operator =.
|
10
|
-
C: 3: 1: Style/Documentation: Missing top-level class documentation comment.
|
11
|
-
C: 3: 4: [Corrected] Layout/TrailingEmptyLines: Final newline missing.
|
12
|
-
C: 3: 28: [Corrected] Style/Semicolon: Do not use semicolons to terminate expressions.
|
13
|
-
C: 3: 29: [Corrected] Layout/TrailingWhitespace: Trailing whitespace detected.
|
14
|
-
C: 4: 3: [Corrected] Layout/IndentationWidth: Use 2 (not 0) spaces for indentation.
|
15
|
-
C: 4: 13: [Corrected] Style/Semicolon: Do not use semicolons to terminate expressions.
|
16
|
-
C: 4: 14: [Corrected] Layout/TrailingWhitespace: Trailing whitespace detected.
|
17
|
-
W: 5: 1: [Corrected] Layout/DefEndAlignment: end at 5, 0 is not aligned with def at 3, 2.
|
18
|
-
|
19
|
-
1 file inspected, 16 offenses detected, 14 offenses corrected
|