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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9142a128b36dbe7407575b67434effc13be1068cb61b2c84844ccba1b14cc0e0
4
- data.tar.gz: 0d81b32a7419607b41b6e3047727245d317d565104049d5f9e6cf3945f2125eb
3
+ metadata.gz: 7fecb0e23bb08a3ec1394c12ad2f3627e269234fb3fb64cf9b80e7e1cfcacdd0
4
+ data.tar.gz: 74d00f34eb8332c9b58046c9681a65bb92026126f5d1eb4d07198361908912a8
5
5
  SHA512:
6
- metadata.gz: eb80eb32cd908e39be175b88e9d58017809dbe720bf5c514cdc7ebecd00f25f894b1e40ad5590c8257748af90225b23da4c8e8002d459fe005114887cc2b4228
7
- data.tar.gz: b5462b11890746f4a5217ce015a88ce75da89267964eab27d00c7ab4c3293384f2fef70ddacbfad255394692f6d735ec056fb05658d279bb49b9fb6307a45023
6
+ metadata.gz: 12e66784e5a236a5da1b16001278a2158fc0fe3de60b76960bf3bb359ffb42ce5e0778cb0480921d9da5019c017473a0e12ac0e7d35a76a1ae87111dadaa1912
7
+ data.tar.gz: c67a524440b7bd432a4636014c6b26bcaf36d89d81baaf4a6429587e04028d9c9e1743463af41e79247d6a554a7b1519fafc03aa9d5b038f71fcc9fb7c654fbd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danger-l10nlint (0.0.7)
4
+ danger-l10nlint (0.0.8)
5
5
  danger-plugin-api (~> 1.0)
6
6
 
7
7
  GEM
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DangerL10nLint
4
- VERSION = '0.0.7'
5
- L10NLINT_VERSION = '0.0.5'
4
+ VERSION = '0.0.8'
5
+ L10NLINT_VERSION = '0.0.6'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-l10nlint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazumasa Shimomura