Skip to content

Commit 4ca1ee6

Browse files
authored
Merge pull request #17 from rubygems/fixed-dependencies
Fixed dependencies
2 parents ffbe026 + f6f0411 commit 4ca1ee6

File tree

3 files changed

+34
-29
lines changed

3 files changed

+34
-29
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ source "https://rubygems.org"
66
gemspec
77

88
gem "compact_index", "~> 0.15.0"
9-
gem "rackup", "~> 2.0.0"
9+
gem "rackup", "~> 2.0"
1010
gem "rake", "~> 13.0"
1111
gem "rubocop", "~> 1.21"
1212
gem "rubocop-performance", "~> 1.21"
1313
gem "rubocop-rake", "~> 0.6.0"
1414
gem "rubocop-rspec", "~> 3.0"
15-
gem "sinatra", "~> 4.0"
15+
gem "sinatra", "~> 4.0.0"
1616

1717
# for missing dependency of rack-protection
1818
gem "logger", "~> 1.7"

Gemfile.lock

Lines changed: 31 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,37 @@ PATH
77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
ast (2.4.2)
10+
ast (2.4.3)
1111
base64 (0.2.0)
1212
compact_index (0.15.0)
1313
diff-lcs (1.5.1)
14-
json (2.7.2)
15-
json (2.7.2-java)
16-
language_server-protocol (3.17.0.3)
14+
json (2.12.0)
15+
json (2.12.0-java)
16+
language_server-protocol (3.17.0.5)
17+
lint_roller (1.1.0)
1718
logger (1.7.0)
1819
mustermann (3.0.0)
1920
ruby2_keywords (~> 0.0.1)
20-
parallel (1.25.1)
21-
parser (3.3.3.0)
21+
parallel (1.27.0)
22+
parser (3.3.8.0)
2223
ast (~> 2.4.1)
2324
racc
24-
racc (1.8.0)
25-
racc (1.8.0-java)
26-
rack (3.1.6)
25+
prism (1.4.0)
26+
racc (1.8.1)
27+
racc (1.8.1-java)
28+
rack (3.1.14)
2729
rack-protection (4.0.0)
2830
base64 (>= 0.1.0)
2931
rack (>= 3.0.0, < 4)
30-
rack-session (2.0.0)
32+
rack-session (2.1.1)
33+
base64 (>= 0.1.0)
3134
rack (>= 3.0.0)
32-
rackup (2.0.0)
35+
rackup (2.1.0)
3336
rack (>= 3)
34-
webrick
37+
webrick (~> 1.8)
3538
rainbow (3.1.1)
3639
rake (13.2.1)
37-
regexp_parser (2.9.2)
38-
rexml (3.3.9)
40+
regexp_parser (2.10.0)
3941
rspec (3.13.0)
4042
rspec-core (~> 3.13.0)
4143
rspec-expectations (~> 3.13.0)
@@ -49,19 +51,20 @@ GEM
4951
diff-lcs (>= 1.2.0, < 2.0)
5052
rspec-support (~> 3.13.0)
5153
rspec-support (3.13.1)
52-
rubocop (1.64.1)
54+
rubocop (1.75.5)
5355
json (~> 2.3)
54-
language_server-protocol (>= 3.17.0)
56+
language_server-protocol (~> 3.17.0.2)
57+
lint_roller (~> 1.1.0)
5558
parallel (~> 1.10)
5659
parser (>= 3.3.0.2)
5760
rainbow (>= 2.2.2, < 4.0)
58-
regexp_parser (>= 1.8, < 3.0)
59-
rexml (>= 3.2.5, < 4.0)
60-
rubocop-ast (>= 1.31.1, < 2.0)
61+
regexp_parser (>= 2.9.3, < 3.0)
62+
rubocop-ast (>= 1.44.0, < 2.0)
6163
ruby-progressbar (~> 1.7)
62-
unicode-display_width (>= 2.4.0, < 3.0)
63-
rubocop-ast (1.31.3)
64-
parser (>= 3.3.1.0)
64+
unicode-display_width (>= 2.4.0, < 4.0)
65+
rubocop-ast (1.44.1)
66+
parser (>= 3.3.7.2)
67+
prism (~> 1.4)
6568
rubocop-performance (1.21.1)
6669
rubocop (>= 1.48.1, < 2.0)
6770
rubocop-ast (>= 1.31.1, < 2.0)
@@ -78,8 +81,10 @@ GEM
7881
rack-session (>= 2.0.0, < 3)
7982
tilt (~> 2.0)
8083
tilt (2.4.0)
81-
unicode-display_width (2.5.0)
82-
webrick (1.9.1)
84+
unicode-display_width (3.1.4)
85+
unicode-emoji (~> 4.0, >= 4.0.4)
86+
unicode-emoji (4.0.4)
87+
webrick (1.8.2)
8388

8489
PLATFORMS
8590
arm64-darwin
@@ -93,13 +98,13 @@ DEPENDENCIES
9398
compact_index (~> 0.15.0)
9499
gem_server_conformance!
95100
logger (~> 1.7)
96-
rackup (~> 2.0.0)
101+
rackup (~> 2.0)
97102
rake (~> 13.0)
98103
rubocop (~> 1.21)
99104
rubocop-performance (~> 1.21)
100105
rubocop-rake (~> 0.6.0)
101106
rubocop-rspec (~> 3.0)
102-
sinatra (~> 4.0)
107+
sinatra (~> 4.0.0)
103108

104109
BUNDLED WITH
105110
2.5.14

spec/gem_server_conformance_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@
546546
.metadata[:content_length_header] = true
547547
it {
548548
is_expected.to unmarshal_as(
549-
a_collection_containing_exactly( \
549+
a_collection_containing_exactly(
550550
*Marshal.load(Zlib.gunzip(parent_response.body)).tap do |entries|
551551
entries.delete(["a", Gem::Version.new("0.2.0"), "ruby"])
552552
end

0 commit comments

Comments
 (0)