Ruby Threads Are Actually Single-Process

Prob'ly all real Rubists know this, but I was disappointed to discover that Ruby's threading is implemented in the Ruby interpreter's process and, within that, does not take advantage of the native system's threading capabilities. Although I assume that this is an implementation detail and not part of the language spec, it means that at the moment Ruby is incapable of taking advantage of multicore/multiprocessor systems.