将我的 Ruby 程序作为一体化安装程序提供
我在 ruby 文件中编写了一个简短的程序,可以在我的 PC 上正确运行。但是我需要找到一种方法将其提供给我的同事使用。他们对红宝石一无所知。该程序需要各种非标准宝石。为他们提供我的程序的一键安装程序(包括所有 gem 和 ruby 本身)的最佳方式是什么?
I have written a short program in a ruby file that runs correctly on my PC. However I need to find a way to give this to my colleagues to use. They have no knowledge of ruby. The program requires various non standard gems. What is the best way to provide them with a one click installer for my program, including all the gems and ruby itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 OCRA - 它将所有内容打包到单个可执行文件中(无需安装)。
当您运行可执行文件时,它将所有内容提取到临时目录(包括 ruby 解释器)并从此目录运行脚本。
Try OCRA - it packages everything into a single executable (no installation required).
When you run the executable, it extracts everything into a temporary directory (including the ruby interpreter) and runs your script from this directory.
我没有使用它(所以我不知道它是否有效),但你可以尝试使用 RubyScript2Exe
I havn't use it (so I don't know if it works), but you can try to use RubyScript2Exe