protocol-quic 0.0.6 → 0.0.8

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: b92ac0684b269c9a406c7ab5ee96e4804582cf1b447804b7b99543e1d38ce97b
4
- data.tar.gz: e58d20b568f597926c9d141bc8fe6b7aef7882e66e15b5a779a7d0ae4c21f80b
3
+ metadata.gz: 9f6f4a7957f9791fbe1b9740b3cb3c9a5d1d9c05d06060c48f75af7179089b9e
4
+ data.tar.gz: c1776c04ed94947251ce31e469ecde78f47c5143dd0acb2ff7a1e7e2a71b082a
5
5
  SHA512:
6
- metadata.gz: 2f6a76e1275cc6b4e7e717a603f8669f4946d97e6e1659cabfb46bbb273f6498305a778b3416958636c31d2c0e93515dcb65f202926c6f1aa20fefefc9913a4d
7
- data.tar.gz: 704917a3287f3b457f4598a1fbb58e60bef925162a33307a376eaf688eeaba83873c4ea93551cffa45382285a9f0d75ddd41cdeedc8dd2508909c660dcfabdae
6
+ metadata.gz: e0b35075dbbe0059a7f0929ee6bf3ed6960ebc40db79e9ffbc5952879440a2ee166f3573af120bcaf2bc957362b6cdf0a1347dc2c746c85a5481681fdf760bcb
7
+ data.tar.gz: 8733ff920cbc81eccfc06bdb7d2b61a413e4f59c3635afa5afe2d3680544326ca0fbde522b2f00b8343797b4272eca0bf27990ea23698c35e97f1330950a8bec
checksums.yaml.gz.sig CHANGED
Binary file
data/ext/gems.rb ADDED
@@ -0,0 +1,8 @@
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"
data/ext/rakefile.rb CHANGED
@@ -6,11 +6,15 @@
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")]
11
+
9
12
  task :default do
10
13
  ruby_library_directory = ENV.fetch("RUBYLIBDIR"){ENV.fetch("RUBYARCHDIR")}
11
- build_environment = {"RUBYLIBDIR" => ruby_library_directory}
12
- teapot = [RbConfig.ruby, Gem.bin_path("teapot", "teapot")]
14
+ bundle_environment = {"BUNDLE_GEMFILE" => BUILD_GEMFILE}
15
+ build_environment = bundle_environment.merge("RUBYLIBDIR" => ruby_library_directory)
13
16
 
14
- sh build_environment, *teapot, "fetch"
15
- sh build_environment, *teapot, "Ruby/Protocol/QUIC"
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"
16
20
  end
@@ -7,6 +7,6 @@
7
7
  module Protocol
8
8
  # @namespace
9
9
  module QUIC
10
- VERSION = "0.0.6"
10
+ VERSION = "0.0.8"
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.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -71,6 +71,7 @@ extensions:
71
71
  - ext/rakefile.rb
72
72
  extra_rdoc_files: []
73
73
  files:
74
+ - ext/gems.rb
74
75
  - ext/rakefile.rb
75
76
  - ext/ruby-protocol-quic-lock.yml
76
77
  - ext/source/Ruby/Protocol/QUIC.cpp
metadata.gz.sig CHANGED
Binary file