danger-l10nlint 0.0.10 → 0.0.11

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: 9a2e571c132ce2d510728cd6d124d77fc9a1e7adfeacdc4cba72a6e8dd79fe15
4
- data.tar.gz: 37dcb9eb3104b27c02a47114c86fcfbd320e2ab593522345cbc831a87ac3dc8b
3
+ metadata.gz: c73b30a3a4734a3ca775b1dc20ab455c400d54f1119a602f72509d0a06e26e79
4
+ data.tar.gz: f9bbcb2bf5feab3d465dc9e821b5d2bd2839ba13e3cf6a396985fb60dc90af96
5
5
  SHA512:
6
- metadata.gz: a707a4c598d861019d9f3f1749ed7fa79e8f4c5adb5dde18d2a81feca4dad860679699cd2e0d722cb474d17add7e363f90e634c45144bdc5a0ed0f4a4b78f018
7
- data.tar.gz: aa14c486a956bbec5a21bc1233f5dbca89612479db4c44666f7192edae2ede7d8d05b3df87a1bdd907b0649d7a3ea965271c354db3b62b59240cf82eb3a6d57c
6
+ metadata.gz: 8a9d2cab71d1569ba34ec7166e1dd3baa2328ac6bccde7459fb95f5f735523e9839bfd57d0137dd5a65a84c0752fab8acc03832c1b8750b93f68f1d3fb45604e
7
+ data.tar.gz: 0ae8fd435d4534f16c698090671f72a529cac1b60d65f76acf43eb5d44c9d185a4a1e5177a82174d54048e5c80af0130a3c4e58f527c6ff61aa9c9795b4b2269
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danger-l10nlint (0.0.10)
4
+ danger-l10nlint (0.0.11)
5
5
  danger-plugin-api (~> 1.0)
6
6
 
7
7
  GEM
data/lib/danger_plugin.rb CHANGED
@@ -119,7 +119,7 @@ module Danger
119
119
 
120
120
  elsif warnings.count > 0 || errors.count > 0
121
121
  # Report if any warning or error
122
- subtitle_in_title = subtitle.empty? '' : "(#{subtitle})"
122
+ subtitle_in_title = subtitle.empty? ? '' : "(#{subtitle})"
123
123
  message = "### L10nLint found issues #{subtitle_in_title}\n\n".dup
124
124
  message << markdown_issues(warnings, 'Warnings') unless warnings.empty?
125
125
  message << markdown_issues(errors, 'Errors') unless errors.empty?
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.10'
4
+ VERSION = '0.0.11'
5
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.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazumasa Shimomura