rubox 0.1.0
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 +7 -0
- data/LICENSE +21 -0
- data/data/Dockerfile.ruby-build +119 -0
- data/data/ext/stub.c +489 -0
- data/data/ext/write-footer.c +38 -0
- data/data/prune-list.conf +40 -0
- data/data/scripts/_common.sh +17 -0
- data/data/scripts/build-ruby.sh +214 -0
- data/data/scripts/fix-dylibs.sh +93 -0
- data/data/scripts/package.sh +544 -0
- data/data/stubs/stub-aarch64-darwin +0 -0
- data/data/stubs/stub-aarch64-linux +0 -0
- data/data/stubs/stub-x86_64-linux +0 -0
- data/data/stubs/write-footer-aarch64-darwin +0 -0
- data/data/stubs/write-footer-aarch64-linux +0 -0
- data/data/stubs/write-footer-x86_64-linux +0 -0
- data/exe/rubox +3 -0
- data/lib/rubox/builder.rb +130 -0
- data/lib/rubox/cli.rb +214 -0
- data/lib/rubox/detector.rb +105 -0
- data/lib/rubox/packager.rb +118 -0
- data/lib/rubox/platform.rb +40 -0
- data/lib/rubox/version.rb +3 -0
- data/lib/rubox.rb +31 -0
- metadata +68 -0
metadata
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rubox
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chris Hasinski
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Build self-contained, single-file executables from Ruby gems or Gemfile-based
|
|
13
|
+
apps. Works on macOS and Linux (any distro).
|
|
14
|
+
email:
|
|
15
|
+
- krzysztof.hasinski@gmail.com
|
|
16
|
+
executables:
|
|
17
|
+
- rubox
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- LICENSE
|
|
22
|
+
- data/Dockerfile.ruby-build
|
|
23
|
+
- data/ext/stub.c
|
|
24
|
+
- data/ext/write-footer.c
|
|
25
|
+
- data/prune-list.conf
|
|
26
|
+
- data/scripts/_common.sh
|
|
27
|
+
- data/scripts/build-ruby.sh
|
|
28
|
+
- data/scripts/fix-dylibs.sh
|
|
29
|
+
- data/scripts/package.sh
|
|
30
|
+
- data/stubs/stub-aarch64-darwin
|
|
31
|
+
- data/stubs/stub-aarch64-linux
|
|
32
|
+
- data/stubs/stub-x86_64-linux
|
|
33
|
+
- data/stubs/write-footer-aarch64-darwin
|
|
34
|
+
- data/stubs/write-footer-aarch64-linux
|
|
35
|
+
- data/stubs/write-footer-x86_64-linux
|
|
36
|
+
- exe/rubox
|
|
37
|
+
- lib/rubox.rb
|
|
38
|
+
- lib/rubox/builder.rb
|
|
39
|
+
- lib/rubox/cli.rb
|
|
40
|
+
- lib/rubox/detector.rb
|
|
41
|
+
- lib/rubox/packager.rb
|
|
42
|
+
- lib/rubox/platform.rb
|
|
43
|
+
- lib/rubox/version.rb
|
|
44
|
+
homepage: https://github.com/khasinski/rubox
|
|
45
|
+
licenses:
|
|
46
|
+
- MIT
|
|
47
|
+
metadata:
|
|
48
|
+
homepage_uri: https://github.com/khasinski/rubox
|
|
49
|
+
source_code_uri: https://github.com/khasinski/rubox/tree/main
|
|
50
|
+
changelog_uri: https://github.com/khasinski/rubox/commits/main
|
|
51
|
+
rdoc_options: []
|
|
52
|
+
require_paths:
|
|
53
|
+
- lib
|
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - ">="
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: 3.0.0
|
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '0'
|
|
64
|
+
requirements: []
|
|
65
|
+
rubygems_version: 4.0.3
|
|
66
|
+
specification_version: 4
|
|
67
|
+
summary: Package Ruby apps into single portable binaries
|
|
68
|
+
test_files: []
|