danger-missed_localizable_strings 1.0.3 → 1.0.4
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/.rubocop.yml +7 -7
- data/.travis.yml +0 -2
- data/CHANGELOG.md +5 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +1 -1
- data/Guardfile +2 -0
- data/Rakefile +2 -0
- data/danger-missed_localizable_strings.gemspec +1 -0
- data/lib/danger_missed_localizable_strings.rb +2 -0
- data/lib/danger_plugin.rb +2 -0
- data/lib/missed_localizable_strings/gem_version.rb +3 -1
- data/lib/missed_localizable_strings/plugin.rb +2 -0
- data/spec/missed_localizable_strings_spec.rb +2 -0
- data/spec/spec_helper.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c21b0f1034dd5ad1461fea3a7f0a541a74162d6c
|
|
4
|
+
data.tar.gz: 9c428b9f44b165b0d546d71226650eda58ff6bc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 208681aa6a94dc153957637ad419dfd204228a24fb84b5b7cba183830e2271ad93a593d7f21a01f7037e025ede07ba0f008d7028459ce59dc236b63543a01ebd
|
|
7
|
+
data.tar.gz: 2ac3283614b5e41795ab3ad6ab2772750e1619587b13113d648e25f098de5224d7edf3524857f17013c0240eee0d83daa88492751c60dcd3f89a024be38026d8
|
data/.rubocop.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
|
|
2
2
|
|
|
3
3
|
AllCops:
|
|
4
|
-
TargetRubyVersion: 2.
|
|
4
|
+
TargetRubyVersion: 2.3
|
|
5
5
|
Exclude:
|
|
6
6
|
- 'spec/fixtures/**/*'
|
|
7
7
|
- 'lib/danger/plugin_support/plugin_parser.rb'
|
|
@@ -24,14 +24,14 @@ Lint/UselessAssignment:
|
|
|
24
24
|
- '**/spec/**/*'
|
|
25
25
|
|
|
26
26
|
# We could potentially enable the 2 below:
|
|
27
|
-
|
|
27
|
+
Layout/IndentHash:
|
|
28
28
|
Enabled: false
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
Layout/AlignHash:
|
|
31
31
|
Enabled: false
|
|
32
32
|
|
|
33
33
|
# HoundCI doesn't like this rule
|
|
34
|
-
|
|
34
|
+
Layout/DotPosition:
|
|
35
35
|
Enabled: false
|
|
36
36
|
|
|
37
37
|
# We allow !! as it's an easy way to convert ot boolean
|
|
@@ -116,7 +116,7 @@ Style/IfInsideElse:
|
|
|
116
116
|
Style/BlockComments:
|
|
117
117
|
Enabled: false
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
Layout/MultilineMethodCallIndentation:
|
|
120
120
|
EnforcedStyle: indented
|
|
121
121
|
|
|
122
122
|
# FIXME: 25
|
|
@@ -126,10 +126,10 @@ Metrics/BlockLength:
|
|
|
126
126
|
Style/MixinGrouping:
|
|
127
127
|
Enabled: false
|
|
128
128
|
|
|
129
|
-
|
|
129
|
+
Naming/FileName:
|
|
130
130
|
Enabled: false
|
|
131
131
|
|
|
132
|
-
|
|
132
|
+
Layout/IndentHeredoc:
|
|
133
133
|
Enabled: false
|
|
134
134
|
|
|
135
135
|
Style/SpecialGlobalVars:
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/Guardfile
CHANGED
data/Rakefile
CHANGED
data/lib/danger_plugin.rb
CHANGED
data/spec/spec_helper.rb
CHANGED