-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
gems.rb
57 lines (45 loc) · 1.3 KB
/
gems.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2017-2024, by Samuel Williams.
source "https://rubygems.org"
gemspec
# gem "async-http", path: "../async-http"
# gem "async-http", path: "../async-http-native-io"
# gem "openssl", git: "https://github.com/ruby/openssl.git"
# gem "async-container", path: "../async-container"
# gem "async-websocket", path: "../async-websocket"
# gem "async-http", path: "../async-http"
# gem "async-http-cache", path: "../async-http-cache"
# gem "protocol-http", path: "../protocol-http"
# gem "protocol-http1", path: "../protocol-http1"
# gem "protocol-http2", path: "../protocol-http2"
# gem "utopia-project", path: "../utopia-project"
# gem "protocol-rack", path: "../protocol-rack"
# gem "async-service", path: "../async-service"
# gem "io-stream", path: "../io-stream"
group :maintenance, optional: true do
gem "bake-modernize"
gem "bake-gem"
gem "utopia-project"
gem "bake-releases"
end
group :development do
gem "ruby-prof", platform: :mri
gem "io-watch"
end
group :test do
gem "sus"
gem "covered"
gem "decode"
gem "rubocop"
gem "sus-fixtures-async"
gem "sus-fixtures-async-http"
gem "sus-fixtures-openssl"
gem "bake"
gem "bake-test"
gem "bake-test-external"
gem "puma"
gem "rackup"
gem "async-process"
gem "async-websocket"
end