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
|
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2017-2025, by Samuel Williams.
source "https://rubygems.org"
gemspec
# gem "async", path: "../async"
# gem "io-endpoint", path: "../io-endpoint"
# gem "io-stream", path: "../io-stream"
# gem "openssl", git: "https://github.com/ruby/openssl.git"
# gem "traces", path: "../traces"
# gem "sus-fixtures-async-http", path: "../sus-fixtures-async-http"
# gem "protocol-http", path: "../protocol-http"
# gem "protocol-http1", path: "../protocol-http1"
# gem "protocol-http2", path: "../protocol-http2"
# gem "protocol-hpack", path: "../protocol-hpack"
group :maintenance, optional: true do
gem "bake-modernize"
gem "bake-gem"
gem "bake-releases"
gem "agent-context"
gem "utopia-project"
end
group :test do
gem "sus"
gem "covered"
gem "decode"
gem "rubocop"
gem "rubocop-md"
gem "rubocop-socketry"
gem "sus-fixtures-async"
gem "sus-fixtures-async-http", "~> 0.8"
gem "sus-fixtures-openssl"
gem "sus-fixtures-benchmark"
gem "bake-test"
gem "bake-test-external"
gem "async-container", "~> 0.14"
gem "localhost"
gem "rack-test"
end
|