Skip to content

Commit 264aaad

Browse files
committed
server: Update to Sinatra v3
1 parent 9d32986 commit 264aaad

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

server/Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# frozen_string_literal: true
22
source 'https://rubygems.org'
33

4-
gem 'sinatra', '>= 2.1.0', '< 3'
4+
gem 'sinatra', '>= 3.0.0', '< 4'
55
gem 'sinatra-websocket', '~> 0.3.1'
6+
gem 'base64', '~> 0.2.0'

server/Gemfile.lock

+11-8
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@ GEM
33
specs:
44
addressable (2.8.7)
55
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
67
daemons (1.4.1)
78
em-websocket (0.3.8)
89
addressable (>= 2.1.1)
910
eventmachine (>= 0.12.9)
1011
eventmachine (1.2.7)
11-
mustermann (2.0.2)
12+
mustermann (3.0.3)
1213
ruby2_keywords (~> 0.0.1)
1314
public_suffix (6.0.1)
1415
rack (2.2.10)
15-
rack-protection (2.2.4)
16-
rack
16+
rack-protection (3.2.0)
17+
base64 (>= 0.1.0)
18+
rack (~> 2.2, >= 2.2.4)
1719
ruby2_keywords (0.0.5)
18-
sinatra (2.2.4)
19-
mustermann (~> 2.0)
20-
rack (~> 2.2)
21-
rack-protection (= 2.2.4)
20+
sinatra (3.2.0)
21+
mustermann (~> 3.0)
22+
rack (~> 2.2, >= 2.2.4)
23+
rack-protection (= 3.2.0)
2224
tilt (~> 2.0)
2325
sinatra-websocket (0.3.1)
2426
em-websocket (~> 0.3.6)
@@ -35,7 +37,8 @@ PLATFORMS
3537
ruby
3638

3739
DEPENDENCIES
38-
sinatra (>= 2.1.0, < 3)
40+
base64 (~> 0.2.0)
41+
sinatra (>= 3.0.0, < 4)
3942
sinatra-websocket (~> 0.3.1)
4043

4144
BUNDLED WITH

0 commit comments

Comments
 (0)