Sha256: 84d9d000618db09b52917a7ded2f96ad75da2705e82933a8b22dc36a7189b1f8

Contents?: true

Size: 523 Bytes

Versions: 1

Compression:

Stored size: 523 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
rb2exe . test.rb test.sh
```

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

## 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

1 entries across 1 versions & 1 rubygems

Version Path
rb2exe-0.1.47 README.md