<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,7 @@
 MANIFEST
 extconf.rb
 tokyocabinet.c
-overview.rd
+tokyocabinet.rd
 tchtest.rb
 tcbtest.rb
 tcftest.rb</diff>
      <filename>MANIFEST</filename>
    </modified>
    <modified>
      <diff>@@ -966,7 +966,7 @@ another process connects the same database file.&lt;br/&gt;
         &lt;div class=&quot;method-heading&quot;&gt;
           &lt;a href=&quot;FDB.src/M000038.html&quot; target=&quot;Code&quot; class=&quot;method-signature&quot;
             onclick=&quot;popupCode('FDB.src/M000038.html');return false;&quot;&gt;
-          &lt;span class=&quot;method-name&quot;&gt;tune&lt;/span&gt;&lt;span class=&quot;method-args&quot;&gt;(bnum, width, limsiz)&lt;/span&gt;
+          &lt;span class=&quot;method-name&quot;&gt;tune&lt;/span&gt;&lt;span class=&quot;method-args&quot;&gt;(width, limsiz)&lt;/span&gt;
           &lt;/a&gt;
         &lt;/div&gt;
       </diff>
      <filename>doc/classes/TokyoCabinet/FDB.html</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,7 @@
 &lt;/head&gt;
 &lt;body class=&quot;standalone-code&quot;&gt;
   &lt;pre&gt;&lt;span class=&quot;ruby-comment cmt&quot;&gt;# File tokyocabinet-doc.rb, line 767&lt;/span&gt;
-    &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;tune&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;bnum&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;width&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;limsiz&lt;/span&gt;)
+    &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;tune&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;width&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;limsiz&lt;/span&gt;)
       &lt;span class=&quot;ruby-comment cmt&quot;&gt;# (native code)&lt;/span&gt;
     &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;&lt;/pre&gt;
 &lt;/body&gt;</diff>
      <filename>doc/classes/TokyoCabinet/FDB.src/M000038.html</filename>
    </modified>
    <modified>
      <diff>@@ -1067,7 +1067,7 @@ number of records to be cached. If it is not defined or not more than 0,
 the record cache is disabled. It is disabled by default.&lt;br/&gt;
 `&lt;em&gt;lcnum&lt;/em&gt;' specifies the maximum number of leaf nodes to be
 cached. If it is not defined or not more than 0, the default value is
-specified. The default value is 2048.&lt;br/&gt; `&lt;em&gt;ncnum&lt;/em&gt;' specifies
+specified. The default value is 4096.&lt;br/&gt; `&lt;em&gt;ncnum&lt;/em&gt;' specifies
 the maximum number of non-leaf nodes to be cached. If it is not defined or
 not more than 0, the default value is specified. The default value is
 512.&lt;br/&gt; If successful, the return value is true, else, it is false.&lt;br/&gt; Note</diff>
      <filename>doc/classes/TokyoCabinet/TDB.html</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-Tue, 10 Mar 2009 12:20:21 +0900
+Tue, 07 Apr 2009 20:04:00 +0900</diff>
      <filename>doc/created.rid</filename>
    </modified>
    <modified>
      <diff>@@ -56,7 +56,7 @@
     &lt;/tr&gt;
     &lt;tr class=&quot;top-aligned-row&quot;&gt;
       &lt;td&gt;&lt;strong&gt;Last Update:&lt;/strong&gt;&lt;/td&gt;
-      &lt;td&gt;Tue Mar 10 12:06:08 +0900 2009&lt;/td&gt;
+      &lt;td&gt;Tue Apr 07 20:03:55 +0900 2009&lt;/td&gt;
     &lt;/tr&gt;
     &lt;/table&gt;
   &lt;/div&gt;</diff>
      <filename>doc/files/tokyocabinet-doc_rb.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,7 @@
 #! /usr/bin/ruby
 
+require 'rbconfig'
+
 commands = [
             &quot;tchtest.rb write casket 10000&quot;,
             &quot;tchtest.rb read casket&quot;,
@@ -30,9 +32,10 @@ commands = [
             &quot;tcttest.rb remove -nb casket&quot;,
             &quot;tcttest.rb misc -tl -tb casket 100&quot;,
            ]
+rubycmd = Config::CONFIG[&quot;bindir&quot;] + &quot;/&quot; + RbConfig::CONFIG['ruby_install_name']
 num = 1
 commands.each do |command|
-  rv = system(&quot;/usr/bin/ruby #{command} &gt;/dev/null&quot;)
+  rv = system(&quot;#{rubycmd} #{command} &gt;/dev/null&quot;)
   if rv
     printf(&quot;%03d/%03d: %s: ok\n&quot;, num, commands.size, command)
   else</diff>
      <filename>test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -764,7 +764,7 @@ module TokyoCabinet
     # `&lt;i&gt;width&lt;/i&gt;' specifies the width of the value of each record.  If it is not defined or not more than 0, the default value is specified.  The default value is 255.%%
     # `&lt;i&gt;limsiz&lt;/i&gt;' specifies the limit size of the database file.  If it is not defined or not more than 0, the default value is specified.  The default value is 268435456.%%
     # If successful, the return value is true, else, it is false.  Note that the tuning parameters of the database should be set before the database is opened.%%
-    def tune(bnum, width, limsiz)
+    def tune(width, limsiz)
       # (native code)
     end
     # Open a database file.%%
@@ -1009,7 +1009,7 @@ module TokyoCabinet
     end
     # Set the caching parameters.%%
     # `&lt;i&gt;rcnum&lt;/i&gt;' specifies the maximum number of records to be cached.  If it is not defined or not more than 0, the record cache is disabled. It is disabled by default.%%
-    # `&lt;i&gt;lcnum&lt;/i&gt;' specifies the maximum number of leaf nodes to be cached.  If it is not defined or not more than 0, the default value is specified.  The default value is 2048.%%
+    # `&lt;i&gt;lcnum&lt;/i&gt;' specifies the maximum number of leaf nodes to be cached.  If it is not defined or not more than 0, the default value is specified.  The default value is 4096.%%
     # `&lt;i&gt;ncnum&lt;/i&gt;' specifies the maximum number of non-leaf nodes to be cached.  If it is not defined or not more than 0, the default value is specified.  The default value is 512.%%
     # If successful, the return value is true, else, it is false.%%
     # Note that the caching parameters of the database should be set before the database is opened.%%</diff>
      <filename>tokyocabinet-doc.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 spec = Gem::Specification.new do |s|
   s.name = &quot;tokyocabinet&quot;
-  s.version = &quot;1.21&quot;
+  s.version = &quot;1.22&quot;
   s.author &quot;Mikio Hirabayashi&quot;
   s.email = &quot;mikio@users.sourceforge.net&quot;
   s.homepage = &quot;http://tokyocabinet.sourceforge.net/&quot;</diff>
      <filename>tokyocabinet.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>61ed39e635ee949425ce87d688df2606ca81338a</id>
    </parent>
  </parents>
  <author>
    <name>Jeremy Hinegardner</name>
    <email>jeremy@hinegardner.org</email>
  </author>
  <url>http://github.com/careo/tokyocabinet-ruby/commit/7d1416db4ab97b38ef924e850b1e872954faefef</url>
  <id>7d1416db4ab97b38ef924e850b1e872954faefef</id>
  <committed-date>2009-04-20T20:30:28-07:00</committed-date>
  <authored-date>2009-04-09T11:01:19-07:00</authored-date>
  <message>Update sources to 1.22

Signed-off-by: Dane Jensen &lt;careo@fastmail.fm&gt;</message>
  <tree>87b526682f86dcaaa3a9c1cb63b7550f618bb45b</tree>
  <committer>
    <name>Dane Jensen</name>
    <email>careo@fastmail.fm</email>
  </committer>
</commit>
