rfix 2.0.3 → 2.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rfix/cli/command/base.rb +2 -2
- data/lib/rfix/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: 66e6b7496f3ebaeaf53eeb228174761dffe2b1aa2a6bb9c2cf1a216dcf8f6ec7
|
4
|
+
data.tar.gz: 7c9d47278a8d71226afb731d673f31701db9e940b215f75c29055759edc46b08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bbd5525b43116a769b127bf2550ad4aa77ccf3c2f1adec696abf6e8feff46c5a1d6b241bd23bec3c699d3d0dc138a71ea571e5145acd007a57385888d50219f
|
7
|
+
data.tar.gz: 9cc4eb38f99db4f0a478450dbf9f689a920a002ee20b1ad806d4ee725c3f27db465ac9e85d67a6a6fd47f8787c70e5fbd38f2dfcc8508c25671ad09223fdb3fe
|
@@ -18,8 +18,8 @@ module Rfix
|
|
18
18
|
|
19
19
|
class RuboCop::CommentConfig
|
20
20
|
concerning :Verification, prepend: true do
|
21
|
-
def cop_enabled_at_line?(
|
22
|
-
repository.include?(processed_source.file_path, line)
|
21
|
+
def cop_enabled_at_line?(_, line)
|
22
|
+
repository.include?(processed_source.file_path, line)
|
23
23
|
rescue StandardError => e
|
24
24
|
abort e.full_message(highlight: true)
|
25
25
|
end
|
data/lib/rfix/version.rb
CHANGED