rufus-tokyo 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.txt CHANGED
@@ -2,6 +2,12 @@
2
2
  = rufus-tokyo CHANGELOG.txt
3
3
 
4
4
 
5
+ == rufus-tokyo - 0.1.11 released 2009/03/25
6
+
7
+ - todo : autodetecting /usr/lib/libtokyocabinet.so and
8
+ /usr/lib/libtokyotyrant.so (thanks mebaran)
9
+
10
+
5
11
  == rufus-tokyo - 0.1.10 released 2009/03/19
6
12
 
7
13
  - bug : had to adapt to TC 1.4.10 and TT 1.1.17 new "setlimit"
data/CREDITS.txt CHANGED
@@ -11,6 +11,8 @@ Zev Blut http://www.iknow.co.jp/users/zev
11
11
  == contributors
12
12
 
13
13
  Justin Reagor http://blog.kineticweb.com/
14
+ Benjami Yu http://github.com/byu
15
+ mebaran http://github.com/mebaran
14
16
 
15
17
 
16
18
  == finally
data/README.txt CHANGED
@@ -38,6 +38,7 @@ this version of rufus-tokyo works with
38
38
 
39
39
  TC 1.4.9 and TT 1.1.16
40
40
  TC 1.4.10 and TT 1.1.17 (adds the offset arg to query.limit)
41
+ TC 1.4.11 and TT 1.1.18
41
42
 
42
43
  tc-ruby 1.20 and tt-ruby 1.3 (Rufus::Edo)
43
44
  tc-ruby 1.21 and tt-ruby 1.4 (Rufus::Edo)
data/TODO.txt CHANGED
@@ -8,7 +8,10 @@
8
8
  [x] rdoc unix socket for tyrant
9
9
  [x] edo : tran
10
10
  [ ] bench ux socket
11
+
11
12
  [ ] impl lget/lput/ldelete in Rufus::Edo::Cabinet
12
13
 
13
14
  [ ] maybe supported different libs for migrations...
14
15
 
16
+ [ ] document ENV['TOKYO_TYRANT_LIB'] & _CABINET_
17
+
@@ -35,6 +35,7 @@ module Rufus::Tokyo
35
35
  # find Tokyo Cabinet lib
36
36
 
37
37
  paths = Array(ENV['TOKYO_CABINET_LIB'] || %w{
38
+ /usr/lib/libtokyocabinet.so
38
39
  /opt/local/lib/libtokyocabinet.dylib
39
40
  /opt/local/lib/libtokyocabinet.so
40
41
  /usr/local/lib/libtokyocabinet.dylib
@@ -36,6 +36,7 @@ module Rufus::Tokyo
36
36
  # find Tokyo Tyrant lib
37
37
 
38
38
  paths = Array(ENV['TOKYO_TYRANT_LIB'] || %w{
39
+ /usr/lib/libtokyotyrant.so
39
40
  /opt/local/lib/libtokyotyrant.dylib
40
41
  /opt/local/lib/libtokyotyrant.so
41
42
  /usr/local/lib/libtokyotyrant.dylib
data/lib/rufus/tokyo.rb CHANGED
@@ -29,7 +29,7 @@ require 'ffi' # sudo gem install ffi
29
29
  module Rufus
30
30
  module Tokyo
31
31
 
32
- VERSION = '0.1.10'
32
+ VERSION = '0.1.11'
33
33
 
34
34
  #
35
35
  # A common error class
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rufus-tokyo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mettraux
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-19 00:00:00 +09:00
12
+ date: 2009-03-25 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency