Skip to content

Commit aca7d20

Browse files
authored
Merge pull request #11 from Kaspik/master
Add support for Danger 8.0
2 parents 8f3929a + aeaeaf9 commit aca7d20

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

Gemfile.lock

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
danger-duplicate_localizable_strings (0.1.2)
5-
danger (~> 7.0)
4+
danger-duplicate_localizable_strings (0.3.0)
5+
danger (~> 8.0)
66

77
GEM
88
remote: https://rubygems.org/
@@ -19,14 +19,14 @@ GEM
1919
colored2 (3.1.2)
2020
cork (0.3.0)
2121
colored2 (~> 3.1)
22-
danger (7.0.0)
22+
danger (8.0.0)
2323
claide (~> 1.0)
2424
claide-plugins (>= 0.9.2)
2525
colored2 (~> 3.1)
2626
cork (~> 0.1)
2727
faraday (>= 0.9.0, < 2.0)
2828
faraday-http-cache (~> 2.0)
29-
git (~> 1.6)
29+
git (~> 1.7)
3030
kramdown (~> 2.0)
3131
kramdown-parser-gfm (~> 1.0)
3232
no_proxy_fix
@@ -39,7 +39,7 @@ GEM
3939
faraday (>= 0.8)
4040
ffi (1.12.2)
4141
formatador (0.2.5)
42-
git (1.6.0)
42+
git (1.7.0)
4343
rchardet (~> 1.8)
4444
guard (2.16.2)
4545
formatador (>= 0.2.4)
@@ -56,7 +56,8 @@ GEM
5656
guard-compat (~> 1.1)
5757
rspec (>= 2.99.0, < 4.0)
5858
jaro_winkler (1.5.4)
59-
kramdown (2.1.0)
59+
kramdown (2.2.1)
60+
rexml
6061
kramdown-parser-gfm (1.1.0)
6162
kramdown (~> 2.0)
6263
listen (3.1.5)
@@ -77,15 +78,15 @@ GEM
7778
sawyer (~> 0.8.0, >= 0.5.3)
7879
open4 (1.3.4)
7980
parallel (1.19.1)
80-
parser (2.7.1.1)
81+
parser (2.7.1.2)
8182
ast (~> 2.4.0)
8283
pry (0.13.1)
8384
coderay (~> 1.1)
8485
method_source (~> 1.0)
8586
public_suffix (4.0.4)
8687
rainbow (3.0.0)
8788
rake (13.0.1)
88-
rb-fsevent (0.10.3)
89+
rb-fsevent (0.10.4)
8990
rb-inotify (0.10.1)
9091
ffi (~> 1.0)
9192
rchardet (1.8.0)
@@ -94,15 +95,15 @@ GEM
9495
rspec-core (~> 3.9.0)
9596
rspec-expectations (~> 3.9.0)
9697
rspec-mocks (~> 3.9.0)
97-
rspec-core (3.9.1)
98-
rspec-support (~> 3.9.1)
98+
rspec-core (3.9.2)
99+
rspec-support (~> 3.9.3)
99100
rspec-expectations (3.9.1)
100101
diff-lcs (>= 1.2.0, < 2.0)
101102
rspec-support (~> 3.9.0)
102103
rspec-mocks (3.9.1)
103104
diff-lcs (>= 1.2.0, < 2.0)
104105
rspec-support (~> 3.9.0)
105-
rspec-support (3.9.2)
106+
rspec-support (3.9.3)
106107
rubocop (0.82.0)
107108
jaro_winkler (~> 1.5.1)
108109
parallel (~> 1.10)
@@ -121,7 +122,7 @@ GEM
121122
unicode-display_width (~> 1.1, >= 1.1.1)
122123
thor (1.0.1)
123124
unicode-display_width (1.7.0)
124-
yard (0.9.24)
125+
yard (0.9.25)
125126

126127
PLATFORMS
127128
ruby

danger-duplicate_localizable_strings.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1919
spec.require_paths = ['lib']
2020

21-
spec.add_runtime_dependency 'danger', '~> 7.0'
21+
spec.add_runtime_dependency 'danger', '~> 8.0'
2222

2323
# General ruby development
2424
spec.add_development_dependency 'bundler', '~> 2.1'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module DuplicateLocalizableStrings
2-
VERSION = '0.2.0'.freeze
2+
VERSION = '0.3.0'.freeze
33
end

0 commit comments

Comments
 (0)