2

我需要用 Ruby 1.8.5 做 IPC。问题是它是 Google SketchUp 附带的 Ruby,它只是完整 Ruby API 的一个子集。例如,没有 Socket 类,也没有 DRb。

使用 Ruby 进行 IPC 的其他方法是什么?任何使用 File 类的东西,比如内存映射文件,或者类似的东西?我对 IPC 完全陌生,所以如果我遗漏了一些明显的东西,我深表歉意。

4

1 回答 1

0

The latest version of SketchUp ships with Ruby 1.8.6. You can download (if you haven't already) the core Ruby API, and just require whatever files you need, to implement your script.

Testing non-SketchUp Ruby code, is much easier outside of SketchUp, with the command line, or an editor like SciTE. Then you can add your SketchUp code for tests within the application.

Ruby Download

SciTE Download

于 2011-06-05T03:11:34.303 回答