aibika 1.3.12

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aibika
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.12
5
+ platform: ruby
6
+ authors:
7
+ - Ribose Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-08-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |+
14
+ Aibika packages a Ruby application into a single executable for the Windows
15
+ platform.
16
+
17
+ The resulting executable is self-extracting and self-running, containing:
18
+
19
+ * the Ruby interpreter;
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
+
32
+ email:
33
+ - open.source@ribose.com
34
+ executables:
35
+ - aibika
36
+ extensions: []
37
+ extra_rdoc_files: []
38
+ files:
39
+ - Gemfile
40
+ - History.txt
41
+ - LICENSE.md
42
+ - Manifest.txt
43
+ - README.adoc
44
+ - Rakefile
45
+ - aibika.gemspec
46
+ - bin/aibika
47
+ - lib/aibika.rb
48
+ - lib/aibika/aibika_builder.rb
49
+ - lib/aibika/cli.rb
50
+ - lib/aibika/host.rb
51
+ - lib/aibika/library_detector.rb
52
+ - lib/aibika/pathname.rb
53
+ - lib/aibika/version.rb
54
+ - samples/activerecord_sample.rb
55
+ - samples/bundler_git/Gemfile
56
+ - samples/bundler_git/bundler_git.rb
57
+ - samples/mech.rb
58
+ - samples/mime-types_sample.rb
59
+ - samples/pg_sample.rb
60
+ - samples/prawn_sample.rb
61
+ - samples/readchar.rb
62
+ - samples/sysproctable.rb
63
+ - samples/tk.rb
64
+ - samples/tkextlib.rb
65
+ - samples/watir_sample.rb
66
+ - samples/win32_api_sample.rb
67
+ - samples/win32ole.rb
68
+ - samples/wxruby_sample.rbw
69
+ - share/aibika/lzma.exe
70
+ - src/Makefile
71
+ - src/edicon.c
72
+ - src/lzma/LzmaDec.c
73
+ - src/lzma/LzmaDec.h
74
+ - src/lzma/Types.h
75
+ - src/seb.exe
76
+ - src/stub.c
77
+ - src/stub.rc
78
+ - src/vit-ruby.ico
79
+ homepage: https://github.com/tamatebako/aibika
80
+ licenses:
81
+ - MIT
82
+ metadata:
83
+ homepage_uri: https://github.com/tamatebako/aibika
84
+ source_code_uri: https://github.com/tamatebako/aibika
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - bin
89
+ - lib
90
+ - samples
91
+ - share
92
+ - src
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 2.7.0
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubygems_version: 3.3.26
105
+ signing_key:
106
+ specification_version: 4
107
+ summary: Ruby applications packager to a single executable on Windows
108
+ test_files: []
109
+ ...