ferocia-rubywmq 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/ext/extconf.rb +1 -1
  2. data/lib/wmq.rb +1 -1
  3. data/rubywmq.gemspec +1 -1
  4. metadata +2 -2
@@ -14,7 +14,7 @@
14
14
  # limitations under the License.
15
15
  ################################################################################
16
16
 
17
- if RUBY_PLATFORM =~ /darwin/
17
+ if RUBY_PLATFORM =~ /darwin/ || ENV['DISABLE_RUBYWMQ']
18
18
  # do nothing on a mac, this is so people developing applications using this
19
19
  # gem on a mac (using stubs for development) can still keep the gem in their
20
20
  # Gemfile
data/lib/wmq.rb CHANGED
@@ -20,7 +20,7 @@
20
20
  # by auto load facility in Ruby WMQ, so try to load client linked library
21
21
  #
22
22
  # Don't try and load wmq on a mac
23
- unless RUBY_PLATFORM =~ /darwin/
23
+ unless RUBY_PLATFORM =~ /darwin/ || ENV['DISABLE_RUBYWMQ']
24
24
  begin
25
25
  require 'wmq/wmq'
26
26
  rescue LoadError
@@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
5
5
  excludes = [/lib.wmq.constants\.rb/, /lib.wmq.constants_admin\.rb/, /ext.wmq_structs\.c/, /ext.wmq_reason\.c/, /ext.Makefile/, /ext.*\.o/, /ext.wmq\.so/, /\.gem$/, /\.log$/, /nbproject/]
6
6
 
7
7
  spec.name = 'ferocia-rubywmq'
8
- spec.version = "1.1.2"
8
+ spec.version = "1.1.3"
9
9
  spec.platform = Gem::Platform::RUBY
10
10
  spec.authors = ['Reid Morrison', 'Edwin Fine']
11
11
  spec.email = ['reidmo@gmail.com']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ferocia-rubywmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-11-27 00:00:00.000000000 Z
13
+ date: 2013-11-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: shoulda