diff options
author | Mark Spruiell <mes@zeroc.com> | 2015-08-18 10:21:11 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2015-08-18 10:21:11 -0700 |
commit | cf258e2a8f7c360c99b84ef7f7fa17ca39e8525f (patch) | |
tree | f29012a2c4d002fd7a533e03c11b61055ae7a7ca /ruby | |
parent | Minor edits (diff) | |
download | ice-cf258e2a8f7c360c99b84ef7f7fa17ca39e8525f.tar.bz2 ice-cf258e2a8f7c360c99b84ef7f7fa17ca39e8525f.tar.xz ice-cf258e2a8f7c360c99b84ef7f7fa17ca39e8525f.zip |
updating version in build instructions
Diffstat (limited to 'ruby')
-rw-r--r-- | ruby/BuildInstructionsLinuxOSX.md | 2 | ||||
-rw-r--r-- | ruby/BuildInstructionsWindows.md | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/ruby/BuildInstructionsLinuxOSX.md b/ruby/BuildInstructionsLinuxOSX.md index 56b4ec9fd76..15c62b6f1f8 100644 --- a/ruby/BuildInstructionsLinuxOSX.md +++ b/ruby/BuildInstructionsLinuxOSX.md @@ -150,4 +150,4 @@ command: SELINUX=disabled [1]: https://zeroc.com/download.html -[2]: https://doc.zeroc.com/display/Ice36/Supported+Platforms+for+Ice+3.6.0 +[2]: https://doc.zeroc.com/display/Ice36/Supported+Platforms+for+Ice+3.6.1 diff --git a/ruby/BuildInstructionsWindows.md b/ruby/BuildInstructionsWindows.md index 767e6bbf93f..e4654ccbc3f 100644 --- a/ruby/BuildInstructionsWindows.md +++ b/ruby/BuildInstructionsWindows.md @@ -27,8 +27,8 @@ the only C++ compiler supported by Ice for Ruby. The instructions in this file make the following assumptions about your build environment: -1. You have installed the Ice 3.6.0 distribution using the ZeroC installer. The -default installation directory is `C:\Program Files (x86)\ZeroC\Ice-3.6.0`. +1. You have installed the Ice 3.6.1 distribution using the ZeroC installer. The +default installation directory is `C:\Program Files (x86)\ZeroC\Ice-3.6.1`. 2. You have installed Ruby 2.2.1 using the Windows installer. The default installation directory is `C:\Ruby221`. 3. You have installed the Ruby Development Kit 4.7.2 in `C:\RubyDevKit-4.7.2`. @@ -70,7 +70,7 @@ forward slashes (/) as directory separators, and cannot contain any space. If your Ice installation's path contains any space, use the DOS 8-character name as a work-around, for example: - > set ICE_HOME=C:/PROGRA~2/Ice-3.6.0 + > set ICE_HOME=C:/PROGRA~2/Ice-3.6.1 You can use `dir /x` to get this DOS name, for example: @@ -105,20 +105,20 @@ The Ruby interpreter must be able to locate the Ice extension. One way to configure the interpreter is to define the `RUBYLIB` environment variable as follows: - > set RUBYLIB=C:\Ice-3.6.0\ruby + > set RUBYLIB=C:\Ice-3.6.1\ruby -This example assumes your Ice for Ruby installation is located in the `C:\Ice-3.6.0` +This example assumes your Ice for Ruby installation is located in the `C:\Ice-3.6.1` directory. In addition, you must modify your PATH environment variable to include the following directories: - C:\Program Files (x86)\ZeroC\Ice-3.6.0\bin - C:\Ice-3.6.0\bin + C:\Program Files (x86)\ZeroC\Ice-3.6.1\bin + C:\Ice-3.6.1\bin At a command prompt, you can set your PATH as shown below: - > set PATH=C:\Program Files (x86)\ZeroC\Ice-3.6.0\bin;C:\Ice-3.6.0\bin;%PATH% + > set PATH=C:\Program Files (x86)\ZeroC\Ice-3.6.1\bin;C:\Ice-3.6.1\bin;%PATH% ## Running the Ruby Tests @@ -142,4 +142,4 @@ If everything worked out, you should see lots of `ok` messages. In case of a failure, the tests abort with `failed`. [1]: https://zeroc.com/download.html -[2]: https://doc.zeroc.com/display/Ice36/Supported+Platforms+for+Ice+3.6.0 +[2]: https://doc.zeroc.com/display/Ice36/Supported+Platforms+for+Ice+3.6.1 |