rbczmq 1.1 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +3 -0
- data/Gemfile.lock +1 -1
- data/ext/rbczmq/extconf.rb +1 -1
- data/lib/zmq/version.rb +1 -1
- metadata +52 -37
data/CHANGELOG.rdoc
CHANGED
data/Gemfile.lock
CHANGED
data/ext/rbczmq/extconf.rb
CHANGED
@@ -112,7 +112,7 @@ end unless File.exist?(lib)
|
|
112
112
|
lib = libs_path + "libczmq.#{LIBEXT}"
|
113
113
|
Dir.chdir czmq_path do
|
114
114
|
sys "./autogen.sh", "CZMQ autogen failed!" unless File.exist?(czmq_path + 'configure')
|
115
|
-
sys "./configure LDFLAGS=-L#{libs_path} CFLAGS
|
115
|
+
sys "./configure LDFLAGS=-L#{libs_path} CFLAGS='#{CZMQ_CFLAGS.join(" ")}' --prefix=#{dst_path} --with-libzmq=#{dst_path} --disable-shared && make all && make install", "CZMQ compile error!"
|
116
116
|
end unless File.exist?(lib)
|
117
117
|
|
118
118
|
dir_config('rbczmq')
|
data/lib/zmq/version.rb
CHANGED
metadata
CHANGED
@@ -1,42 +1,49 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbczmq
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
version: "1.2"
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
- Lourens
|
11
|
+
authors:
|
12
|
+
- "Lourens Naud\xC3\xA9"
|
9
13
|
- James Tucker
|
10
14
|
autorequire:
|
11
15
|
bindir: bin
|
12
16
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
17
|
+
|
18
|
+
date: 2013-04-05 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
16
21
|
name: rake-compiler
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
|
-
requirements:
|
20
|
-
- - ~>
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.8.0
|
23
|
-
type: :development
|
24
22
|
prerelease: false
|
25
|
-
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
24
|
none: false
|
27
|
-
requirements:
|
25
|
+
requirements:
|
28
26
|
- - ~>
|
29
|
-
- !ruby/object:Gem::Version
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 63
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
- 8
|
32
|
+
- 0
|
30
33
|
version: 0.8.0
|
31
|
-
|
32
|
-
|
34
|
+
type: :development
|
35
|
+
version_requirements: *id001
|
36
|
+
description: "Ruby extension for CZMQ - High-level C Binding for \xC3\x98MQ (http://czmq.zeromq.org)"
|
37
|
+
email:
|
33
38
|
- lourens@methodmissing.com
|
34
39
|
- jftucker@gmail.com
|
35
40
|
executables: []
|
36
|
-
|
41
|
+
|
42
|
+
extensions:
|
37
43
|
- ext/rbczmq/extconf.rb
|
38
44
|
extra_rdoc_files: []
|
39
|
-
|
45
|
+
|
46
|
+
files:
|
40
47
|
- .gitignore
|
41
48
|
- .travis.yml
|
42
49
|
- CHANGELOG.rdoc
|
@@ -143,30 +150,38 @@ files:
|
|
143
150
|
- test/test_zmq.rb
|
144
151
|
homepage: http://github.com/methodmissing/rbczmq
|
145
152
|
licenses: []
|
153
|
+
|
146
154
|
post_install_message:
|
147
|
-
rdoc_options:
|
155
|
+
rdoc_options:
|
148
156
|
- --charset=UTF-8
|
149
|
-
require_paths:
|
157
|
+
require_paths:
|
150
158
|
- lib
|
151
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
159
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
152
160
|
none: false
|
153
|
-
requirements:
|
154
|
-
- -
|
155
|
-
- !ruby/object:Gem::Version
|
156
|
-
|
157
|
-
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
hash: 3
|
165
|
+
segments:
|
166
|
+
- 0
|
167
|
+
version: "0"
|
168
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
158
169
|
none: false
|
159
|
-
requirements:
|
160
|
-
- -
|
161
|
-
- !ruby/object:Gem::Version
|
162
|
-
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
hash: 3
|
174
|
+
segments:
|
175
|
+
- 0
|
176
|
+
version: "0"
|
163
177
|
requirements: []
|
178
|
+
|
164
179
|
rubyforge_project:
|
165
|
-
rubygems_version: 1.8.
|
180
|
+
rubygems_version: 1.8.15
|
166
181
|
signing_key:
|
167
182
|
specification_version: 3
|
168
|
-
summary: Ruby extension for CZMQ - High-level C Binding for
|
169
|
-
test_files:
|
183
|
+
summary: "Ruby extension for CZMQ - High-level C Binding for \xC3\x98MQ (http://czmq.zeromq.org)"
|
184
|
+
test_files:
|
170
185
|
- test/helper.rb
|
171
186
|
- test/socket/test_dealer_socket.rb
|
172
187
|
- test/socket/test_pair_socket.rb
|