<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -18,22 +18,22 @@ else
 
   # create an ActiveRecord::Schema
   if $a
-    reader = DBF::Table.new filename
-    puts reader.schema
+    table = DBF::Table.new filename
+    puts table.schema
   end
   
   if $s
-    reader = DBF::Table.new filename
+    table = DBF::Table.new filename
     puts
     puts &quot;Database: #{filename}&quot;
-    puts &quot;Type: (#{reader.version}) #{reader.version_description}&quot;
-    puts &quot;Memo Type: #{reader.memo_file_format}&quot; if reader.has_memo_file?
-    puts &quot;Records: #{reader.record_count}&quot;
+    puts &quot;Type: (#{table.version}) #{table.version_description}&quot;
+    puts &quot;Memo Type: #{table.memo_file_format}&quot; if table.has_memo_file?
+    puts &quot;Records: #{table.record_count}&quot;
     
     puts &quot;\nFields:&quot;
     puts &quot;Name             Type       Length     Decimal&quot;
     puts &quot;-&quot; * 78
-    reader.columns.each do |f|
+    table.columns.each do |f|
       puts &quot;%-16s %-10s %-10s %-10s&quot; % [f.name, f.type, f.length, f.decimal]
     end
   end</diff>
      <filename>bin/dbf</filename>
    </modified>
    <modified>
      <diff>@@ -13,9 +13,9 @@ module DBF
     attr_reader :data                   # DBF file handle
     attr_reader :memo                   # Memo file handle
     
-    # Initializes a new DBF::Reader
+    # Initializes a new DBF::Table
     # Example:
-    #   reader = DBF::Reader.new 'data.dbf'
+    #   table = DBF::Table.new 'data.dbf'
     def initialize(filename, options = {})
       @data = File.open(filename, 'rb')
       @memo = open_memo(filename)
@@ -78,16 +78,16 @@ module DBF
     # Find records using a simple ActiveRecord-like syntax.
     #
     # Examples:
-    #   reader = DBF::Reader.new 'mydata.dbf'
+    #   table = DBF::Table.new 'mydata.dbf'
     #   
     #   # Find record number 5
-    #   reader.find(5)
+    #   table.find(5)
     #
     #   # Find all records for Keith Morrison
-    #   reader.find :all, :first_name =&gt; &quot;Keith&quot;, :last_name =&gt; &quot;Morrison&quot;
+    #   table.find :all, :first_name =&gt; &quot;Keith&quot;, :last_name =&gt; &quot;Morrison&quot;
     # 
     #   # Find first record
-    #   reader.find :first, :first_name =&gt; &quot;Keith&quot;
+    #   table.find :first, :first_name =&gt; &quot;Keith&quot;
     #
     # The &lt;b&gt;command&lt;/b&gt; can be an id, :all, or :first.
     # &lt;b&gt;options&lt;/b&gt; is optional and, if specified, should be a hash where the keys correspond</diff>
      <filename>lib/dbf/table.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e8f1b0cdd3f9a97a2ec984aeac3d953dae08c819</id>
    </parent>
  </parents>
  <author>
    <name>Keith Morrison</name>
    <email>keithm@infused.org</email>
  </author>
  <url>http://github.com/infused/dbf/commit/d2211c3cadd6562750a55085956eac77c7056906</url>
  <id>d2211c3cadd6562750a55085956eac77c7056906</id>
  <committed-date>2008-12-12T17:24:04-08:00</committed-date>
  <authored-date>2008-12-12T17:24:04-08:00</authored-date>
  <message>Update documentation</message>
  <tree>0ee9be3b3f1066a0f192855d411b3e56f5e84c83</tree>
  <committer>
    <name>Keith Morrison</name>
    <email>keithm@infused.org</email>
  </committer>
</commit>
