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.
@@ -1,3 +1,7 @@
1
+ ## 1.1.5 / 2012-09-17
2
+
3
+ * RCBC-81 Protect against NoMethodError
4
+
1
5
  ## 1.1.4 / 2012-08-30
2
6
 
3
7
  * RCBC-70 return binary keys using Encoding.external value (thanks to Alex Leverington)
@@ -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)
@@ -17,5 +17,5 @@
17
17
 
18
18
  # Couchbase ruby client
19
19
  module Couchbase
20
- VERSION = "1.1.4"
20
+ VERSION = "1.1.5"
21
21
  end
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
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-08-30 00:00:00.000000000 Z
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: -2223779579395876074
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: -2223779579395876074
212
+ hash: 1664938512714947814
213
213
  requirements: []
214
214
  rubyforge_project:
215
215
  rubygems_version: 1.8.23