Sha256: 9cc15538d8752197d3feb7c386e24af65acc6d09645eddf2c5a43df43343cd18

Contents?: true

Size: 559 Bytes

Versions: 9

Compression:

Stored size: 559 Bytes

Contents

# Ruby to EXE

Turn ruby scripts into portable executable apps.

## Installation

```ruby
gem install rb2exe
```

## Usage

```bash
rb2exe <app working directory> <app main file> <output file>
```

## Usage Example:
```bash
mkdir test
cd test
echo "puts 'Hello world'" > test.rb
rb2exe . test.rb test.sh
./test.sh
```

## WARNING
The entire <app directory> will be packed!

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/loureirorg/rb2exe.

## TODO

* Allow ruby versions other than 2.2.2;
* Pack web applications;

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rb2exe-0.1.46 README.md
rb2exe-0.1.45 README.md
rb2exe-0.1.44 README.md
rb2exe-0.1.43 README.md
rb2exe-0.1.40 README.md
rb2exe-0.1.39 README.md
rb2exe-0.1.38 README.md
rb2exe-0.1.29 README.md
rb2exe-0.1.14 README.md