protocol-quic 0.0.8 → 0.0.10

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: a6aeae647966ae3c38c08bf5fb84b77f5281bf14c59c030c2194fd440000c88d
4
+ data.tar.gz: c0f8da81236ee70526c4f9badd033bec99aca663b64c34e4f1f09c6e5ef5610f
5
5
  SHA512:
6
- metadata.gz: e0b35075dbbe0059a7f0929ee6bf3ed6960ebc40db79e9ffbc5952879440a2ee166f3573af120bcaf2bc957362b6cdf0a1347dc2c746c85a5481681fdf760bcb
7
- data.tar.gz: 8733ff920cbc81eccfc06bdb7d2b61a413e4f59c3635afa5afe2d3680544326ca0fbde522b2f00b8343797b4272eca0bf27990ea23698c35e97f1330950a8bec
6
+ metadata.gz: 2cc03b37578885912d200073f7e313a5e149edf7e14dde44fd4633ab6aa37f33e0ffd939da09dcb5f9b6d6f4dcd49868522467877d4fed1e23cc08099f0be311
7
+ data.tar.gz: b6be5cb20f4c7ba3830835443454eb6ac6abc944771170f7dfd70dddbf21f9fb5272684148d406d12dd466d5a8dd55b46a2f5b465ebdf0e51d4bf59beaa60e57
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, "-rrubygems", "-e", "load Gem.activate_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.10"
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.10
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
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"