Ported RubyWMQ to a new platform? Fixed a bug or platform specific issue?
Make it available to the community. We welcome any contributions to RubyWMQ.
Source CodeThe latest source code for RubyWMQ is now available via git and can be viewed online at github. Use git to clone the repository: git://github.com/reidmorrison/rubywmq.gitTo compile the source code the following must first be installed on the local machine: - A ‘C’ compiler
- On Windows: Visual C++ V6.0
- Any standard 'C' compiler should work on the MQ supported platforms
- The WebSphere MQ Software development toolkit
- Ensure the MQ SDK is installed
- MQ Client and/or MQ Server binaries
Ensure that the compiler is in the current path. - For
windows run the following command prior to performing the install:
"C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT"
The build scripts assumes that MQ is installed in the default
location. If not, update the scripts as follows: - Windows
- cd rubywmq/ext
- Edit
the file build.bat and change the location of WebSphere MQ (if not in
C:\Program Files\IBM\WebSphere MQ) and the location of Visual C++ 6 (if
not C:\Program Files\Microsoft Visual Studio\VC98)
- Unix/Linux
- cd rubywmq/ext
- Edit the file build.sh and edit the location of WebSphere (if not in /opt/mqm)
Submitting PatchesAfter editing the source code and testing the changes, submit a patch to the forum. The patch can be generated by running: cd rubywmq svn diff > mypatch
|