rbczmq 1.1 → 1.2

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.
@@ -1,5 +1,8 @@
1
1
  = Changelog
2
2
 
3
+ == 1.2 (April 5, 2012)
4
+ * Escape czmq CFLAGS
5
+
3
6
  == 1.1 (April 4, 2012)
4
7
  * Bump czmq to version 1.4.0
5
8
  * Enable debug symbols for czmq in order to track down a GC bug with ZMQ::Message
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbczmq (1.1)
4
+ rbczmq (1.2)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -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=#{CZMQ_CFLAGS.join(" ")} --prefix=#{dst_path} --with-libzmq=#{dst_path} --disable-shared && make all && make install", "CZMQ compile error!"
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')
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module ZMQ
4
- VERSION = "1.1"
4
+ VERSION = "1.2"
5
5
  end
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
- version: '1.1'
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 Naudé
11
+ authors:
12
+ - "Lourens Naud\xC3\xA9"
9
13
  - James Tucker
10
14
  autorequire:
11
15
  bindir: bin
12
16
  cert_chain: []
13
- date: 2013-04-04 00:00:00.000000000 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
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
- version_requirements: !ruby/object:Gem::Requirement
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
- description: Ruby extension for CZMQ - High-level C Binding for ØMQ (http://czmq.zeromq.org)
32
- email:
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
- extensions:
41
+
42
+ extensions:
37
43
  - ext/rbczmq/extconf.rb
38
44
  extra_rdoc_files: []
39
- files:
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
- version: '0'
157
- required_rubygems_version: !ruby/object:Gem::Requirement
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
- version: '0'
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.24
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 ØMQ (http://czmq.zeromq.org)
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