diff options
author | Ralph Amissah <ralph@amissah.com> | 2008-11-03 13:51:13 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2008-11-03 13:51:13 -0500 |
commit | 868478a6dc0a0ecaeddb333c3b318298cd1b67e8 (patch) | |
tree | 4349e91ea30424ac2748beb4d3e524576de88cc4 /bin | |
parent | regex match refinement (diff) |
ruby1.9 some testing minor changes
opened to run with ruby1.9, (however not all used libraries ported on system)
continue to use ruby1.8 series >= ruby1.8.4
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sisu | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ #!/usr/bin/env ruby # coding: utf-8 #SiSU: copyright (C) 1997..2008 Ralph Amissah; License GPL, see appended program information -raise "Please, use Ruby1.8 (1.8.4 or later), current Ruby #{RUBY_VERSION}" if RUBY_VERSION < '1.8.4' or RUBY_VERSION > '1.9' -#raise "Please, use Ruby1.8.4 or later, current Ruby #{RUBY_VERSION}" if RUBY_VERSION < '1.8.4' +#raise "Please, use Ruby1.8 (1.8.4 or later), current Ruby #{RUBY_VERSION}" if RUBY_VERSION < '1.8.4' or RUBY_VERSION > '1.9' +raise "Please, use Ruby1.8.4 or later, current Ruby #{RUBY_VERSION}" if RUBY_VERSION < '1.8.4' $VERBOSE=nil $KCODE='u' if RUBY_VERSION < '1.9' branch='v0' |