<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -102,4 +102,27 @@ describe SpaceCowboy do
     end
   end
   
+  describe &quot;'name' string field&quot; do
+    it 'should still accept strings normally' do
+      name_input = 'Maurice'
+      @toker.name = name_input
+      @toker.name.should == name_input
+    end
+  end
+  
+  describe &quot;'trees_shaken' integer field&quot; do
+    it 'should still accept strings normally' do
+      integer = 5
+      integer_input = '5'
+      @toker.trees_shaken = integer_input
+      @toker.trees_shaken.should == integer
+    end
+    
+    it 'should still accept integers normally' do
+      integer = 5
+      integer_input = 5
+      @toker.trees_shaken = integer_input
+      @toker.trees_shaken.should == integer
+    end
+  end
 end</diff>
      <filename>spec/autochronic_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,5 +3,7 @@ ActiveRecord::Schema.define(:version =&gt; 0) do
     t.date :some_date
     t.datetime :some_time
     t.timestamp :other_time
+    t.string :name
+    t.integer :trees_shaken
   end
 end</diff>
      <filename>spec/resources/schema</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4dc647e8e2a6e66dd1dc172ae3a39b845f74a0cf</id>
    </parent>
  </parents>
  <author>
    <name>Yossef Mendelssohn</name>
    <email>ymendel@pobox.com</email>
  </author>
  <url>http://github.com/flogic/autochronic/commit/a4437293b374c3fd8e33b883bce44d2948d10954</url>
  <id>a4437293b374c3fd8e33b883bce44d2948d10954</id>
  <committed-date>2008-02-07T22:02:29-08:00</committed-date>
  <authored-date>2008-02-07T22:02:29-08:00</authored-date>
  <message>Added some non-date/time fields and specs to prove this doesn't screw up other model attributes. It's worth nothing that since it just passed midnight, all the specs are passing.</message>
  <tree>df3008d212abf7ab527afd02a88e0d72d50a89bc</tree>
  <committer>
    <name>Yossef Mendelssohn</name>
    <email>ymendel@pobox.com</email>
  </committer>
</commit>
