Skip to content

Commit ea5fc43

Browse files
committed
Relax mediawiki_api version requirement
1 parent 22e5dbe commit ea5fc43

File tree

3 files changed

+49
-48
lines changed

3 files changed

+49
-48
lines changed

Gemfile.lock

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,73 @@
11
PATH
22
remote: .
33
specs:
4-
wikidata-diff-analyzer (2.0.3)
4+
wikidata-diff-analyzer (2.0.4)
55
json (~> 2.1)
6-
mediawiki_api (~> 0.7.0)
7-
rake (~> 13.0)
8-
rspec (~> 3.0)
9-
rubocop (~> 1.21)
6+
mediawiki_api
107

118
GEM
129
remote: https://rubygems.org/
1310
specs:
14-
ast (2.4.2)
15-
diff-lcs (1.5.0)
16-
domain_name (0.5.20190701)
17-
unf (>= 0.0.5, < 1.0.0)
11+
ast (2.4.3)
12+
diff-lcs (1.6.2)
13+
domain_name (0.6.20240107)
1814
faraday (0.17.6)
1915
multipart-post (>= 1.2, < 3)
20-
faraday-cookie_jar (0.0.7)
16+
faraday-cookie_jar (0.0.8)
2117
faraday (>= 0.8.0)
22-
http-cookie (~> 1.0.0)
18+
http-cookie (>= 1.0.0)
2319
faraday_middleware (0.14.0)
2420
faraday (>= 0.7.4, < 1.0)
25-
http-cookie (1.0.5)
21+
http-cookie (1.1.0)
2622
domain_name (~> 0.5)
27-
json (2.6.3)
23+
json (2.18.0)
24+
language_server-protocol (3.17.0.5)
25+
lint_roller (1.1.0)
2826
mediawiki_api (0.7.1)
2927
faraday (~> 0.9, >= 0.9.0)
3028
faraday-cookie_jar (~> 0.0, >= 0.0.6)
3129
faraday_middleware (~> 0.10, >= 0.10.0)
32-
multipart-post (2.3.0)
33-
parallel (1.23.0)
34-
parser (3.2.2.1)
30+
multipart-post (2.4.1)
31+
parallel (1.27.0)
32+
parser (3.3.10.0)
3533
ast (~> 2.4.1)
34+
racc
35+
prism (1.7.0)
36+
racc (1.8.1)
3637
rainbow (3.1.1)
37-
rake (13.0.6)
38-
regexp_parser (2.8.0)
39-
rexml (3.2.5)
40-
rspec (3.12.0)
41-
rspec-core (~> 3.12.0)
42-
rspec-expectations (~> 3.12.0)
43-
rspec-mocks (~> 3.12.0)
44-
rspec-core (3.12.2)
45-
rspec-support (~> 3.12.0)
46-
rspec-expectations (3.12.3)
38+
rake (13.3.1)
39+
regexp_parser (2.11.3)
40+
rspec (3.13.2)
41+
rspec-core (~> 3.13.0)
42+
rspec-expectations (~> 3.13.0)
43+
rspec-mocks (~> 3.13.0)
44+
rspec-core (3.13.6)
45+
rspec-support (~> 3.13.0)
46+
rspec-expectations (3.13.5)
4747
diff-lcs (>= 1.2.0, < 2.0)
48-
rspec-support (~> 3.12.0)
49-
rspec-mocks (3.12.5)
48+
rspec-support (~> 3.13.0)
49+
rspec-mocks (3.13.7)
5050
diff-lcs (>= 1.2.0, < 2.0)
51-
rspec-support (~> 3.12.0)
52-
rspec-support (3.12.0)
53-
rubocop (1.51.0)
51+
rspec-support (~> 3.13.0)
52+
rspec-support (3.13.6)
53+
rubocop (1.82.1)
5454
json (~> 2.3)
55+
language_server-protocol (~> 3.17.0.2)
56+
lint_roller (~> 1.1.0)
5557
parallel (~> 1.10)
56-
parser (>= 3.2.0.0)
58+
parser (>= 3.3.0.2)
5759
rainbow (>= 2.2.2, < 4.0)
58-
regexp_parser (>= 1.8, < 3.0)
59-
rexml (>= 3.2.5, < 4.0)
60-
rubocop-ast (>= 1.28.0, < 2.0)
60+
regexp_parser (>= 2.9.3, < 3.0)
61+
rubocop-ast (>= 1.48.0, < 2.0)
6162
ruby-progressbar (~> 1.7)
62-
unicode-display_width (>= 2.4.0, < 3.0)
63-
rubocop-ast (1.28.1)
64-
parser (>= 3.2.1.0)
63+
unicode-display_width (>= 2.4.0, < 4.0)
64+
rubocop-ast (1.49.0)
65+
parser (>= 3.3.7.2)
66+
prism (~> 1.7)
6567
ruby-progressbar (1.13.0)
66-
unf (0.1.4)
67-
unf_ext
68-
unf_ext (0.0.8.2)
69-
unicode-display_width (2.4.2)
68+
unicode-display_width (3.2.0)
69+
unicode-emoji (~> 4.1)
70+
unicode-emoji (4.2.0)
7071

7172
PLATFORMS
7273
x86_64-linux
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module WikidataDiffAnalyzer
4-
VERSION = '2.0.3'
4+
VERSION = '2.0.4'
55
end

wikidata-diff-analyzer.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Gem::Specification.new do |spec|
3636
spec.files.reject! { |f| File.extname(f) == '.gem' }
3737

3838
# Adding the dependencies
39-
spec.add_dependency 'json', '~> 2.1'
40-
spec.add_dependency 'mediawiki_api', '~> 0.7.0'
41-
spec.add_dependency 'rake', '~> 13.0'
42-
spec.add_dependency 'rspec', '~> 3.0'
43-
spec.add_dependency 'rubocop', '~> 1.21'
39+
spec.add_runtime_dependency 'json', '~> 2.1'
40+
spec.add_runtime_dependency 'mediawiki_api'
41+
spec.add_development_dependency 'rake', '~> 13.0'
42+
spec.add_development_dependency 'rspec', '~> 3.0'
43+
spec.add_development_dependency 'rubocop', '~> 1.21'
4444
end

0 commit comments

Comments
 (0)