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 +4 -4
- data/.travis.yml +0 -1
- data/CHANGELOG.rdoc +4 -0
- data/ext/rbczmq/extconf.rb +3 -2
- data/lib/zmq/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c70c0e721ff7036ff8e63eb4db8f82becfaba71e
|
|
4
|
+
data.tar.gz: cd6ad5726f8364dc46677170b13503b0c01134ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77416e8a255b51835499b9fbd5e94441c362cf110757ef4a4d52a2e94cf37ae83fb88d55a9a0e52ab4a485932997066bc6372b45de170807d8ab4a8888b22769
|
|
7
|
+
data.tar.gz: 0be8c55b6c219adc9265ff75b128afc0cc5137bfc5f2608c63abcd4b71a168fc8305670a0989a0d609f08dfc9eeb2554d34cf3e5615d301f1be32a8b175be47d
|
data/.travis.yml
CHANGED
data/CHANGELOG.rdoc
CHANGED
data/ext/rbczmq/extconf.rb
CHANGED
|
@@ -143,7 +143,8 @@ fail "Error compiling and linking libczmq" unless have_library("czmq")
|
|
|
143
143
|
|
|
144
144
|
$defs << "-pedantic"
|
|
145
145
|
|
|
146
|
-
$CFLAGS
|
|
147
|
-
$CFLAGS
|
|
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')
|
data/lib/zmq/version.rb
CHANGED
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.
|
|
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:
|
|
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
|