thruster 0.0.0-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1391b33fe923f89d788c9cc90c7ca1bc1cd8bd23e7f36b3b67e203580e175415
4
+ data.tar.gz: c91d3a0abc16cd6565f04e1d1b32f8c40374b40410f32ea2bdc59c6a3aa88669
5
+ SHA512:
6
+ metadata.gz: 64ce7dd09034a1912a8f4480dd98504474425a44534d645cf0dc2572bbf855c677e24dc25cd9944203fc4cd5de8304de9d5c26c5e1973a5eb6c9b66bcc6db151
7
+ data.tar.gz: 9303d9893f244d61ae4de5c0c84a10fbf27b247492b8de7576c19b7842ed2a921a288c551b3809a328b14160bf868ff4cf225121fa9fb2ce268fc3fcc477d455
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2024 Kevin McConnell
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # Thruster
2
+
data/exe/thrust ADDED
@@ -0,0 +1,11 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ PLATFORM = [ :cpu, :os ].map { |m| Gem::Platform.local.send(m) }.join("-")
4
+ EXECUTABLE = File.expand_path(File.join(__dir__, PLATFORM, "thrust"))
5
+
6
+ if File.exist?(EXECUTABLE)
7
+ exec(EXECUTABLE, *ARGV)
8
+ else
9
+ STDERR.puts("ERROR: Unsupported platform: #{PLATFORM}")
10
+ exit 1
11
+ end
Binary file
@@ -0,0 +1,3 @@
1
+ module Thruster
2
+ VERSION = "0.0.0"
3
+ end
data/lib/thruster.rb ADDED
@@ -0,0 +1,4 @@
1
+ module Thruster
2
+ end
3
+
4
+ require_relative "thruster/version"
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thruster
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: x86_64-darwin
6
+ authors:
7
+ - Kevin McConnell
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-02-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A zero-config HTTP/2 proxy for lightweight production deployments
14
+ email: kevin@37signals.com
15
+ executables:
16
+ - thrust
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - MIT-LICENSE
21
+ - README.md
22
+ - exe/thrust
23
+ - exe/x86_64-darwin/thrust
24
+ - lib/thruster.rb
25
+ - lib/thruster/version.rb
26
+ homepage: https://github.com/basecamp/thruster
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://github.com/basecamp/thruster
31
+ rubygems_mfa_required: 'true'
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.5.3
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Zero-config HTTP/2 proxy
51
+ test_files: []