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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/danger_plugin.rb +1 -1
- data/lib/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: c73b30a3a4734a3ca775b1dc20ab455c400d54f1119a602f72509d0a06e26e79
|
4
|
+
data.tar.gz: f9bbcb2bf5feab3d465dc9e821b5d2bd2839ba13e3cf6a396985fb60dc90af96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a9d2cab71d1569ba34ec7166e1dd3baa2328ac6bccde7459fb95f5f735523e9839bfd57d0137dd5a65a84c0752fab8acc03832c1b8750b93f68f1d3fb45604e
|
7
|
+
data.tar.gz: 0ae8fd435d4534f16c698090671f72a529cac1b60d65f76acf43eb5d44c9d185a4a1e5177a82174d54048e5c80af0130a3c4e58f527c6ff61aa9c9795b4b2269
|
data/Gemfile.lock
CHANGED
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