protocol-quic 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f6f4a7957f9791fbe1b9740b3cb3c9a5d1d9c05d06060c48f75af7179089b9e
4
- data.tar.gz: c1776c04ed94947251ce31e469ecde78f47c5143dd0acb2ff7a1e7e2a71b082a
3
+ metadata.gz: d3325d3ee4f97bd1a108083a531229c561865490e69d3129e861e9d5ba4d2d5e
4
+ data.tar.gz: c62030e23f0b3d493f3fba62f2db0fa179863a1978df278802753e066141f165
5
5
  SHA512:
6
- metadata.gz: e0b35075dbbe0059a7f0929ee6bf3ed6960ebc40db79e9ffbc5952879440a2ee166f3573af120bcaf2bc957362b6cdf0a1347dc2c746c85a5481681fdf760bcb
7
- data.tar.gz: 8733ff920cbc81eccfc06bdb7d2b61a413e4f59c3635afa5afe2d3680544326ca0fbde522b2f00b8343797b4272eca0bf27990ea23698c35e97f1330950a8bec
6
+ metadata.gz: 5e545700b35838309e46bea66973d9e51126d44c5631070ac8b0daf7fa76fe7b1a238402023370fa7c06d0601b1bb0a60e5128847d8f12bdfbcb407f26049678
7
+ data.tar.gz: f22483e701a6656c88ccef070829f7b489a8e9e4e7d13483d642e5dcdd2413db6cb91bacdbcef33190eb78b935d680988e212e3b9fa984bfd5f8e02798a9044c
checksums.yaml.gz.sig CHANGED
Binary file
data/ext/rakefile.rb CHANGED
@@ -6,15 +6,12 @@
6
6
  require "rbconfig"
7
7
  require "rubygems"
8
8
 
9
- BUILD_GEMFILE = File.expand_path("gems.rb", __dir__)
10
- BUNDLE = [RbConfig.ruby, Gem.bin_path("bundler", "bundle")]
9
+ TEAPOT = [RbConfig.ruby, Gem.bin_path("teapot", "teapot")]
11
10
 
12
11
  task :default do
13
12
  ruby_library_directory = ENV.fetch("RUBYLIBDIR"){ENV.fetch("RUBYARCHDIR")}
14
- bundle_environment = {"BUNDLE_GEMFILE" => BUILD_GEMFILE}
15
- build_environment = bundle_environment.merge("RUBYLIBDIR" => ruby_library_directory)
13
+ build_environment = {"RUBYLIBDIR" => ruby_library_directory}
16
14
 
17
- sh bundle_environment, *BUNDLE, "install", "--no-lock"
18
- sh build_environment, *BUNDLE, "exec", "teapot", "fetch"
19
- sh build_environment, *BUNDLE, "exec", "teapot", "Ruby/Protocol/QUIC"
15
+ sh build_environment, *TEAPOT, "fetch"
16
+ sh build_environment, *TEAPOT, "Ruby/Protocol/QUIC"
20
17
  end
@@ -7,6 +7,6 @@
7
7
  module Protocol
8
8
  # @namespace
9
9
  module QUIC
10
- VERSION = "0.0.8"
10
+ VERSION = "0.0.9"
11
11
  end
12
12
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protocol-quic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -71,7 +71,6 @@ extensions:
71
71
  - ext/rakefile.rb
72
72
  extra_rdoc_files: []
73
73
  files:
74
- - ext/gems.rb
75
74
  - ext/rakefile.rb
76
75
  - ext/ruby-protocol-quic-lock.yml
77
76
  - ext/source/Ruby/Protocol/QUIC.cpp
@@ -128,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
127
  - !ruby/object:Gem::Version
129
128
  version: '0'
130
129
  requirements: []
131
- rubygems_version: 4.0.10
130
+ rubygems_version: 4.0.3
132
131
  specification_version: 4
133
132
  summary: QUIC protocol implementation using ngtcp2.
134
133
  test_files: []
metadata.gz.sig CHANGED
Binary file
data/ext/gems.rb DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Released under the MIT License.
4
- # Copyright, 2026, by Samuel Williams.
5
-
6
- source "https://rubygems.org"
7
-
8
- gem "teapot", "~> 3.5"