protocol-quic 0.0.7 → 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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/ext/rakefile.rb +4 -7
- data/lib/protocol/quic/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -3
- metadata.gz.sig +0 -0
- data/ext/gems.rb +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3325d3ee4f97bd1a108083a531229c561865490e69d3129e861e9d5ba4d2d5e
|
|
4
|
+
data.tar.gz: c62030e23f0b3d493f3fba62f2db0fa179863a1978df278802753e066141f165
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
-
|
|
15
|
-
build_environment = bundle_environment.merge("RUBYLIBDIR" => ruby_library_directory)
|
|
13
|
+
build_environment = {"RUBYLIBDIR" => ruby_library_directory}
|
|
16
14
|
|
|
17
|
-
sh
|
|
18
|
-
sh build_environment, *
|
|
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
|
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.
|
|
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.
|
|
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
|