zookeeper 1.2.12 → 1.2.13

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ v1.2.13 fix build under rbenv
2
+
3
+ * h/t to Eric Lindvall for fixing #22 in http://git.io/PEPgnA
4
+ build reportedly works in rbenv now.
5
+
1
6
  v1.2.12 improve locking in dispatch_next_callback
2
7
 
3
8
  * Possible fix for an edgy NoMethodError on nil
data/README.markdown CHANGED
@@ -30,6 +30,8 @@ sudo gem install zookeeper
30
30
 
31
31
  ### rbenv is awesome
32
32
 
33
+ UPDATE: this appears to have been fixed by @eric in [this patch](http://git.io/PEPgnA). If you use rbenv, please report any issues, but I believe it should work now.
34
+
33
35
  Let me start out by saying I prefer rvm, and that I really don't know a whole lot about linking on OS X. Or Linux. Any suggestions or constructive insults would be greatly appreciated if you have insight into what i'm doing wrong here.
34
36
 
35
37
  So, it seems that [ruby-build][] doesn't use `--enable-shared` by default. I'm told this is for speed.
data/ext/extconf.rb CHANGED
@@ -18,7 +18,7 @@ end
18
18
  $CFLAGS = "#{$CFLAGS}".gsub("$(cflags)", "").gsub("-arch ppc", "")
19
19
  $LDFLAGS = "#{$LDFLAGS}".gsub("$(ldflags)", "").gsub("-arch ppc", "")
20
20
  $CXXFLAGS = " -std=gnu++98 #{$CFLAGS}"
21
- $CPPFLAGS = $ARCH_FLAG = $DLDFLAGS = ""
21
+ $CPPFLAGS = $ARCH_FLAG = ""
22
22
 
23
23
  if RUBY_VERSION == '1.8.7'
24
24
  $CFLAGS << ' -DZKRB_RUBY_187'
@@ -1,4 +1,4 @@
1
1
  module Zookeeper
2
- VERSION = '1.2.12'
2
+ VERSION = '1.2.13'
3
3
  DRIVER_VERSION = '3.3.5'
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zookeeper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 12
10
- version: 1.2.12
9
+ - 13
10
+ version: 1.2.13
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phillip Pearson
@@ -20,7 +20,7 @@ autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
22
 
23
- date: 2012-07-26 00:00:00 Z
23
+ date: 2012-08-08 00:00:00 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: logging