danger-l10nlint 0.0.7 → 0.0.8
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/Gemfile.lock +1 -1
- data/lib/danger_plugin.rb +1 -3
- data/lib/version.rb +2 -2
- 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: 7fecb0e23bb08a3ec1394c12ad2f3627e269234fb3fb64cf9b80e7e1cfcacdd0
|
|
4
|
+
data.tar.gz: 74d00f34eb8332c9b58046c9681a65bb92026126f5d1eb4d07198361908912a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12e66784e5a236a5da1b16001278a2158fc0fe3de60b76960bf3bb359ffb42ce5e0778cb0480921d9da5019c017473a0e12ac0e7d35a76a1ae87111dadaa1912
|
|
7
|
+
data.tar.gz: c67a524440b7bd432a4636014c6b26bcaf36d89d81baaf4a6429587e04028d9c9e1743463af41e79247d6a554a7b1519fafc03aa9d5b038f71fcc9fb7c654fbd
|
data/Gemfile.lock
CHANGED
data/lib/danger_plugin.rb
CHANGED
|
@@ -138,8 +138,6 @@ module Danger
|
|
|
138
138
|
message << "| --- | ----- | ----- |\n"
|
|
139
139
|
|
|
140
140
|
results.each do |r|
|
|
141
|
-
puts r
|
|
142
|
-
|
|
143
141
|
filename = r['location']['file'].split('/').last(2).join("/")
|
|
144
142
|
line = r['location']['line']
|
|
145
143
|
reason = r['reason']
|
|
@@ -166,7 +164,7 @@ module Danger
|
|
|
166
164
|
message << "`#{r['ruleIdentifier']}`"
|
|
167
165
|
message << " `#{filename}:#{r['location']['line']}`" # file:line for pasting into Xcode Quick Open
|
|
168
166
|
|
|
169
|
-
send(method, message, file: github_filename, line: r['line'])
|
|
167
|
+
send(method, message, file: github_filename, line: r['location']['line'])
|
|
170
168
|
end
|
|
171
169
|
end
|
|
172
170
|
|
data/lib/version.rb
CHANGED