aibika 1.3.12 → 1.3.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -0
- data/aibika.gemspec +6 -17
- data/lib/aibika/version.rb +1 -1
- data/lib/aibika.rb +5 -5
- data/share/aibika/edicon.exe +0 -0
- data/share/aibika/stub.exe +0 -0
- data/share/aibika/stubw.exe +0 -0
- metadata +10 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a7afbad2bb83690244e71550732784e9f6159f63ddb4751bd003d95ca483fa4
|
4
|
+
data.tar.gz: 8320e64fca547ed411f14fa92c26916cfb6b7533d002e66f06035a78acbda234
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d16229417657d575a7e78dd5cdd23fb439e4a8d70aed8cd230177be22436e8f8380b9b83bbbab74cd65786ade505d58d8af28cae9e92ac710a956db7edf97bb
|
7
|
+
data.tar.gz: 7f9ed4ff3200b561cf51c7c05725544361688bb8c52612f71cfa17128652035aa0abd08203546b783d7cd726fdf4edb6cc3a4afca33fb21cad8257900dde8668
|
data/Rakefile
CHANGED
data/aibika.gemspec
CHANGED
@@ -12,23 +12,11 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = 'Ruby applications packager to a single executable on Windows'
|
13
13
|
spec.description = <<~SUM
|
14
14
|
Aibika packages a Ruby application into a single executable for the Windows
|
15
|
-
platform.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
* packaged Ruby source code; and
|
21
|
-
* any additionally needed Ruby libraries or DLLs.
|
22
|
-
|
23
|
-
NOTE: Aibika was created from the Metanorma-enhanced fork of the
|
24
|
-
https://github.com/larsch/ocra[One-click Ruby Application "Ocra" packager].
|
25
|
-
The first Aibkika version was launched as 1.3.12. The last version of Ocra
|
26
|
-
was 1.3.11 from 2020.
|
27
|
-
|
28
|
-
NOTE: Aibika is considered a temporary solution to the full-fledged
|
29
|
-
functionality of https://github.com/tamatebako/tebako[Tebako], which provides a
|
30
|
-
user-space mounted-disk experience with minimal intervention.
|
31
|
-
|
15
|
+
platform. The resulting executable is self-extracting and self-running, containing the Ruby interpreter;
|
16
|
+
packaged Ruby source code; and any additionally needed Ruby libraries or DLLs.
|
17
|
+
Aibika was created from the Metanorma-enhanced fork of the One-click Ruby Application "Ocra" packager (https://github.com/larsch/ocra).
|
18
|
+
It is considered a temporary solution to the full-fledged functionality of Tebako (https://github.com/tamatebako/tebako),
|
19
|
+
which provides a user-space mounted-disk experience with minimal intervention.
|
32
20
|
SUM
|
33
21
|
spec.homepage = 'https://github.com/tamatebako/aibika'
|
34
22
|
spec.required_ruby_version = '>= 2.7.0'
|
@@ -44,6 +32,7 @@ Gem::Specification.new do |spec|
|
|
44
32
|
f.match(%r{\A(?:(?:test)/|\.(?:git|cirrus|autotest|rubocop))})
|
45
33
|
end
|
46
34
|
end
|
35
|
+
spec.files += Dir.glob('share/aibika/**')
|
47
36
|
spec.bindir = 'bin'
|
48
37
|
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
|
49
38
|
spec.require_paths = %w[bin lib samples share src]
|
data/lib/aibika/version.rb
CHANGED
data/lib/aibika.rb
CHANGED
@@ -103,7 +103,7 @@ module Aibika
|
|
103
103
|
end
|
104
104
|
|
105
105
|
# Returns a binary blob store embedded in the current Ruby script.
|
106
|
-
def self.
|
106
|
+
def self.next_embedded_image
|
107
107
|
DATA.read(DATA.readline.to_i).unpack1('m')
|
108
108
|
end
|
109
109
|
|
@@ -122,12 +122,12 @@ module Aibika
|
|
122
122
|
|
123
123
|
def self.find_stubs
|
124
124
|
if defined?(DATA)
|
125
|
-
@stubimage =
|
126
|
-
@stubwimage =
|
127
|
-
lzmaimage =
|
125
|
+
@stubimage = next_embedded_image
|
126
|
+
@stubwimage = next_embedded_image
|
127
|
+
lzmaimage = next_embedded_image
|
128
128
|
@lzmapath = Host.tempdir / 'lzma.exe'
|
129
129
|
File.open(@lzmapath, 'wb') { |file| file << lzmaimage }
|
130
|
-
ediconimage =
|
130
|
+
ediconimage = next_embedded_image
|
131
131
|
@ediconpath = Host.tempdir / 'edicon.exe'
|
132
132
|
File.open(@ediconpath, 'wb') { |file| file << ediconimage }
|
133
133
|
else
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aibika
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
@@ -10,25 +10,13 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: |
|
14
14
|
Aibika packages a Ruby application into a single executable for the Windows
|
15
|
-
platform.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
* packaged Ruby source code; and
|
21
|
-
* any additionally needed Ruby libraries or DLLs.
|
22
|
-
|
23
|
-
NOTE: Aibika was created from the Metanorma-enhanced fork of the
|
24
|
-
https://github.com/larsch/ocra[One-click Ruby Application "Ocra" packager].
|
25
|
-
The first Aibkika version was launched as 1.3.12. The last version of Ocra
|
26
|
-
was 1.3.11 from 2020.
|
27
|
-
|
28
|
-
NOTE: Aibika is considered a temporary solution to the full-fledged
|
29
|
-
functionality of https://github.com/tamatebako/tebako[Tebako], which provides a
|
30
|
-
user-space mounted-disk experience with minimal intervention.
|
31
|
-
|
15
|
+
platform. The resulting executable is self-extracting and self-running, containing the Ruby interpreter;
|
16
|
+
packaged Ruby source code; and any additionally needed Ruby libraries or DLLs.
|
17
|
+
Aibika was created from the Metanorma-enhanced fork of the One-click Ruby Application "Ocra" packager (https://github.com/larsch/ocra).
|
18
|
+
It is considered a temporary solution to the full-fledged functionality of Tebako (https://github.com/tamatebako/tebako),
|
19
|
+
which provides a user-space mounted-disk experience with minimal intervention.
|
32
20
|
email:
|
33
21
|
- open.source@ribose.com
|
34
22
|
executables:
|
@@ -66,7 +54,10 @@ files:
|
|
66
54
|
- samples/win32_api_sample.rb
|
67
55
|
- samples/win32ole.rb
|
68
56
|
- samples/wxruby_sample.rbw
|
57
|
+
- share/aibika/edicon.exe
|
69
58
|
- share/aibika/lzma.exe
|
59
|
+
- share/aibika/stub.exe
|
60
|
+
- share/aibika/stubw.exe
|
70
61
|
- src/Makefile
|
71
62
|
- src/edicon.c
|
72
63
|
- src/lzma/LzmaDec.c
|
@@ -106,4 +97,3 @@ signing_key:
|
|
106
97
|
specification_version: 4
|
107
98
|
summary: Ruby applications packager to a single executable on Windows
|
108
99
|
test_files: []
|
109
|
-
...
|