stompgem / stomp

A ruby gem for sending and receiving messages from a Stomp protocol compliant message queue. Includes: failover logic, ssl support.
http://stomp.github.com
Apache License 2.0
152 stars 80 forks source link

What range of ruby versions are supported? #174

Open Fitzsimmons opened 2 years ago

Fitzsimmons commented 2 years ago

I'm wondering which range of ruby versions are intended to be supported since SecureRandom.uuid() has been present in the standard library since 2.0. I can submit a pull request that replaces the custom implementation with the one in the standard library unless 1.8 support is still needed.

It's also feasible to detect at runtime if SecureRandom is available and fall back to the custom implementation if it's not.