Loading a bundle with Ruby on MacOS?

Note that we’re currently missing the C API symbols in the SketchUp application. All except the SUGetExtensionLicense. What we see people have done is link against SketchUpAPI.framework - but that shouldn’t be done. You end up with duplicate symbols and linking to the standalone lib instead of the app. It will appear to work in many/most cases, but eventually you’ll run into crashes and incorrect behaviour. We’ll be making sure the symbols are correctly exported in upcoming release.

We used the convention which Ruby has been using .so on Windows (even though they are .dll files) and .bundle on Mac (even though they are dylib).