From your critera, I'd pick JRuby:
- Richness of API/libraries available (eg. maths, plotting, networking) (9)
Everything the JVM has access to, which is a lot
- Ability to embed in desktop (java/c++) applications (8)
Excellent Monkeybars framework, which lets you design a swing GUI in your GUI designer, and then wire it up using clean ruby code
Rawr can package your app as an executable jar
- Ability to interface with DLLs/Shared Libraries (7)
Java shared libraries easily, C ones via jna + libffi
- Ability to generate GUIs (7)
Swing just works. Not sure how easy it is to use QtJambi, but it's definitely possible.
- Community/User support (6)
Lots. Ruby has an excellent community.
Everywhere the JVM works
- Database manipulation (3)
All the ruby database libraries and all the java ones
Here's where ruby takes the definite lead over groovy and python. The language has had some really beautiful design decisions taken early on, which shows up in the consistency and power of the standard library. Blocks, in particular, make it a joy to use.