root / INSTALL

Revision 276:ba90032f50a9, 0.6 kB (checked in by ser, 4 years ago)

Merged 3.0 into the main development branch.

Line 
1Run "bin/install.rb --help"
2
3If you want to upgrade REXML (or install it as the default version of REXML)
4run install.rb with no arguments.  If you want to have multiple versions of
5REXML installed at the same time, run install.rb with the "-c" argument.  If
6you do this, you will need to require REXML differently, since you will need
7a "require" command that supports versioning.  This is installed with REXML;
8all you need to do is:
9
10        require "require_with_version"
11        require "rexml"
12
13or
14
15        require( "rexml" ) { |v| v >= "2.7" }
16
17to place restrictions on the version of REXML that you are loading.
Note: See TracBrowser for help on using the browser.