Tutorial: system.getRvmInfo

system.getRvmInfo

Returns information about the running RVM in an object.

Example

fin.desktop.System.getRvmInfo(function (rvmInfoObject) {
    console.log("RVM version:", rvmInfoObject.version);
    console.log("RVM has been running since:", rvmInfoObject["start-time"]);
}, function (err) {
    console.log("Failed to get rvm info, error message:", err);
});