Subject: require a certain version of the ruby interpreter
From: Shea Martin <null void.0>
Date: Sat, 25 Mar 2006 05:38:53 +0900
I would like to enforce ruby 1.8.4 or higher.
if VERSION < "1.8.4"
raise "Invalid version"
end
Fails when VERSION is "1.8.10".
Yeah, I know I could write my own string comparison, but was wondering
if there is a canned solution for this?
~S