2

Possible Duplicate:
Distributing Ruby/Python desktop apps

For python, we have things like py2exe, py2app, freeze.

I only want a runnable application; it can even not be an exe or an app. I just want to distribute the ruby/python interpreter with all the libraries and my application to the user. It's more like an embedded version of application.

Is there any tools like this for ruby (and for python, maybe)? It's better if it is cross-platform, including OSX, windows and linux.

Community
  • 1
  • 1
Shiva Wu
  • 1,074
  • 1
  • 8
  • 20

2 Answers2

2

If you use jruby, you can compile it to an executable JAR. See this answer: Create deployable jruby JAR file.

Community
  • 1
  • 1
Sergio Tulentsev
  • 226,338
  • 43
  • 373
  • 367
1

Shoes lets you package Ruby apps for three platforms.

The OneClick Ruby Application Builder can build standalone .exe files for Ruby scripts.

Disclaimer: I have not used either of these tools, so I cannot vouch for their usability or stability.

nneonneo
  • 171,345
  • 36
  • 312
  • 383