couchbase 1.1.4-x86-mingw32 → 1.1.5-x86-mingw32
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.
- data/HISTORY.markdown +4 -0
- data/ext/couchbase_ext/extconf.rb +4 -4
- data/lib/couchbase/version.rb +1 -1
- metadata +4 -4
data/HISTORY.markdown
CHANGED
@@ -24,9 +24,9 @@ def define(macro, value = nil)
|
|
24
24
|
$defs.push("-D #{[macro.upcase, value].compact.join('=')}")
|
25
25
|
end
|
26
26
|
|
27
|
-
$CFLAGS << " #{ENV["CFLAGS"]}"
|
28
|
-
$LDFLAGS << " #{ENV["LDFLAGS"]}"
|
29
|
-
$LIBS << " #{ENV["LIBS"]}"
|
27
|
+
($CFLAGS ||= "") << " #{ENV["CFLAGS"]}"
|
28
|
+
($LDFLAGS ||= "") << " #{ENV["LDFLAGS"]}"
|
29
|
+
($LIBS ||= "") << " #{ENV["LIBS"]}"
|
30
30
|
|
31
31
|
$CFLAGS << ' -std=c99 -Wall -Wextra '
|
32
32
|
if ENV['DEBUG']
|
@@ -83,7 +83,7 @@ else
|
|
83
83
|
end
|
84
84
|
|
85
85
|
if COMMON_HEADERS !~ /"ruby\.h"/
|
86
|
-
COMMON_HEADERS << %(\n#include "ruby.h"\n)
|
86
|
+
(COMMON_HEADERS ||= "") << %(\n#include "ruby.h"\n)
|
87
87
|
end
|
88
88
|
|
89
89
|
if try_compile(<<-SRC)
|
data/lib/couchbase/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: couchbase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: x86-mingw32
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: yajl-ruby
|
@@ -200,7 +200,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: '0'
|
201
201
|
segments:
|
202
202
|
- 0
|
203
|
-
hash:
|
203
|
+
hash: 1664938512714947814
|
204
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
205
|
none: false
|
206
206
|
requirements:
|
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
209
|
version: '0'
|
210
210
|
segments:
|
211
211
|
- 0
|
212
|
-
hash:
|
212
|
+
hash: 1664938512714947814
|
213
213
|
requirements: []
|
214
214
|
rubyforge_project:
|
215
215
|
rubygems_version: 1.8.23
|