rbczmq 1.7.8 → 1.7.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01f7a617098dab8cb3800f01bd8a4c24af8aaedf
4
- data.tar.gz: 701f90292c7bfd1ca2ff846ce6388e43e5350868
3
+ metadata.gz: c70c0e721ff7036ff8e63eb4db8f82becfaba71e
4
+ data.tar.gz: cd6ad5726f8364dc46677170b13503b0c01134ad
5
5
  SHA512:
6
- metadata.gz: b8bef93adec081ac3039a90ab3fb6387c2873ae48ece830c10e66cbadf2abac2f67cf63271783045a9329bfa8796ddcc94b3b11353e4f095a5cf78fc6a2d4b6b
7
- data.tar.gz: bb85824630315a6f89d16609649f2c1f97ae34ba46db847cee43594ceafc4ff2add9fb0a7b64d87f8dfd780726d985061093bb0282c142b901ef0261a9cd519c
6
+ metadata.gz: 77416e8a255b51835499b9fbd5e94441c362cf110757ef4a4d52a2e94cf37ae83fb88d55a9a0e52ab4a485932997066bc6372b45de170807d8ab4a8888b22769
7
+ data.tar.gz: 0be8c55b6c219adc9265ff75b128afc0cc5137bfc5f2608c63abcd4b71a168fc8305670a0989a0d609f08dfc9eeb2554d34cf3e5615d301f1be32a8b175be47d
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
  bundler_args: --quiet
3
3
  rvm:
4
- - rbx-2
5
4
  - 1.9.3
6
5
  - 2.0.0
7
6
  - 2.1.1
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.7.9 (July 03, 2015)
4
+
5
+ * set dst/lib as linker rpath for rbczmq_ext [Anthony Bargnesi]
6
+
3
7
  == 1.7.8 (December 24, 2014)
4
8
 
5
9
  * clean up beacon tests to bind to port 0 to get an automatically assigned free port (Erkki Eilonen)
@@ -143,7 +143,8 @@ fail "Error compiling and linking libczmq" unless have_library("czmq")
143
143
 
144
144
  $defs << "-pedantic"
145
145
 
146
- $CFLAGS << ' -Wall -funroll-loops'
147
- $CFLAGS << ' -Wextra -O0 -ggdb3' if ENV['DEBUG']
146
+ $CFLAGS << ' -Wall -funroll-loops'
147
+ $CFLAGS << ' -Wextra -O0 -ggdb3' if ENV['DEBUG']
148
+ $LDFLAGS << " -Wl,-rpath,ext/rbczmq/dst/lib/"
148
149
 
149
150
  create_makefile('rbczmq_ext')
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module ZMQ
4
- VERSION = "1.7.8"
4
+ VERSION = "1.7.9"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbczmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.8
4
+ version: 1.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lourens Naudé
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-12-24 00:00:00.000000000 Z
13
+ date: 2015-07-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest
@@ -700,3 +700,4 @@ test_files:
700
700
  - test/test_threading.rb
701
701
  - test/test_timer.rb
702
702
  - test/test_zmq.rb
703
+ has_rdoc: true