-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,20 @@ date: 2023-08-25 00:00:00 +0800 | |
categories: | ||
- aibika | ||
- packaging | ||
author: | ||
name: Maxim Samsonov | ||
email: [email protected] | ||
use_picture: assets | ||
social_links: | ||
- https://github.com/maxirmx | ||
authors: | ||
- | ||
name: Maxim Samsonov | ||
email: [email protected] | ||
use_picture: assets | ||
social_links: | ||
- https://github.com/maxirmx | ||
- | ||
name: Ronald Tse | ||
email: [email protected] | ||
social_links: | ||
- https://www.linkedin.com/in/rhtse/ | ||
- https://github.com/ronaldtse | ||
|
||
excerpt: >- | ||
Aibika is a modernized version of the Ocra Ruby executable packager on | ||
Windows. | ||
|
@@ -86,13 +94,18 @@ fibers not scattered evenly. | |
|
||
=== General | ||
|
||
Let's look at how Aibika can be used to create a single executable for a Ruby | ||
Aibika supports multiple ways of creating a single executable for a Ruby | ||
program on Windows. | ||
|
||
In this post we will described the most typical cases, but if your use case is | ||
more complex, please check out the | ||
https://github.com/tamatebako/aibika#readme[README] for other options. | ||
|
||
|
||
=== Single file | ||
|
||
Let's package a simple Ruby application that uses an external gem. | ||
If your Ruby application is a single file that references installed gems, this | ||
is how you package it. | ||
|
||
Our sample application will check validity of a PNG file using the | ||
https://github.com/metanorma/pngcheck-ruby/tags[pngcheck] gem. | ||
|