Sha256: ab4bb74075bc0575fa117cc5f9b2d40818a60cf1590b6d58a47f3a00484d461a

Contents?: true

Size: 673 Bytes

Versions: 1

Compression:

Stored size: 673 Bytes

Contents

require 'wmq/version'
require 'wmq/queue_manager'
require 'wmq/message'

unless RUBY_PLATFORM =~ /darwin/
  # don't try and require any of these on a mac as they do not exist, they
  # required the gem extensions to have been compiled.

  require 'wmq/constants'
  require 'wmq/constants_admin'

  # Load wmq using the auto-load library.
  #
  # If it fails, then it is most likely since this platform is not supported
  # by the auto load facility in Ruby WMQ, so try to load client linked library
  # For Example AIX does not support Autoload whereas Windows and Linux are supported
  begin
    require 'wmq/wmq'
  rescue LoadError
    require 'wmq/wmq_client'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ferocia-rubywmq-2.0.4 lib/wmq.rb