<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -21,57 +21,57 @@ describe DataMapper::Adapters::InMemoryAdapter do
       @string_property = @model.color
       @integer_property = @model.num_spots
     end
-    
+
     it 'should successfully save an object' do
       @heff1.new_record?.should be_false
     end
-    
+
     it 'should be able to get the object' do
       Heffalump.get(1).should == @heff1
     end
-    
+
     it 'should be able to get all the objects' do
       Heffalump.all.should == [@heff1, @heff2, @heff3]
     end
-    
+
     it 'should be able to search for objects with equal value' do
       Heffalump.all(:striped =&gt; true).should == [@heff1]
     end
-    
+
     it 'should be able to search for objects included in an array of values' do
       Heffalump.all(:num_spots =&gt; [ 25, 50, 75, 100 ]).should == [@heff2]
     end
-    
+
     it 'should be able to search for objects included in a range of values' do
       Heffalump.all(:num_spots =&gt; 25..100).should == [@heff2]
     end
-    
+
     it 'should be able to search for objects with nil value' do
       Heffalump.all(:num_spots =&gt; nil).should == [@heff3]
     end
-    
+
     it 'should be able to search for objects with not equal value' do
       Heffalump.all(:striped.not =&gt; true).should == [@heff2, @heff3]
     end
-    
+
     it 'should be able to search for objects with value less than or equal to' do
       Heffalump.all(:num_spots.lte =&gt; 0).should == [@heff1]
     end
-    
+
     it 'should be able to order the objects ascending' do
       Heffalump.all(:order =&gt; [ :color ]).should == [@heff1, @heff2, @heff3]
     end
-    
+
     it 'should be able to order the objects descending' do
       Heffalump.all(:order =&gt; [ :color.desc ]).should == [@heff3, @heff2, @heff1]
     end
-    
+
     it 'should be able to update an object' do
       @heff1.num_spots = 10
       @heff1.save
       Heffalump.get(1).num_spots.should == 10
     end
-    
+
     it 'should be able to destroy an object' do
       @heff1.destroy
       Heffalump.all.size.should == 2</diff>
      <filename>spec/semipublic/adapters/in_memory_adapter_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ share_examples_for 'An Adapter' do
     %w[ @adapter @model @string_property @integer_property ].each do |ivar|
       raise &quot;+#{ivar}+ should be defined in before block&quot; unless instance_variable_get(ivar)
     end
-    
+
     @resource = @model.new(:color =&gt; &quot;Mauve&quot;)
   end
 
@@ -100,107 +100,107 @@ share_examples_for 'An Adapter' do
       @model.get(@resource.id).should be_nil
     end
   end
-  
+
   describe &quot;conditions&quot; do
     before do
       @red = @model.create(@string_property.name =&gt; &quot;red&quot;)
       @two = @model.create(@integer_property.name =&gt; 2)
       @five = @model.create(@integer_property.name =&gt; 5)
     end
-    
+
     describe &quot;not&quot; do
       it 'should be able to search for objects with not equal value' do
         @model.all(@string_property.name.not =&gt; &quot;red&quot;).should_not include(@blue)
       end
-      
+
       it &quot;should include objects that are not like the value&quot; do
         @model.all(@string_property.name.not =&gt; &quot;black&quot;).should include(@red)
       end
-      
+
       it 'should be able to search for objects with not nil value' do
         @model.all(@string_property.name.not =&gt; nil).should include(@red)
       end
-    
+
       it &quot;should not include objects with a nil value&quot; do
         @model.all(@string_property.name.not =&gt; nil).should_not include(@two)
       end
-      
+
       it 'should be able to search for objects not included in an array of values' do
         @model.all(@integer_property.name.not =&gt; [ 1, 3, 5, 7 ]).should include(@two)
       end
-      
+
       it 'should be able to search for objects not included in an array of values' do
         @model.all(@integer_property.name.not =&gt; [ 1, 3, 5, 7 ]).should_not include(@five)
       end
-      
+
       it 'should be able to search for objects not included in a range of values' do
         @model.all(@integer_property.name.not =&gt; 1..3).should include(@five)
       end
-      
+
       it &quot;should not be able to search for values not included in a range of values&quot; do
         @model.all(@integer_property.name.not =&gt; 1..3).should_not include(@two)
       end
     end
-  
+
     describe &quot;like&quot; do
       it 'should be able to search for objects that match value' do
         @model.all(@string_property.name.like =&gt; 'ed').should include(@red)
       end
-      
+
       it &quot;should not search for objects that don't match the value&quot; do
         @model.all(@string_property.name.like =&gt; 'blak').should_not include(@red)
       end
     end
-    
+
     describe &quot;gt&quot; do
       it 'should be able to search for objects with value greater than' do
         @model.all(@integer_property.name.gt =&gt; 1).should include(@two)
       end
-      
+
       it &quot;should not find objects with a value less than&quot; do
         @model.all(@integer_property.name.gt =&gt; 3).should_not include(@two)
       end
     end
-    
+
     describe &quot;gte&quot; do
       it 'should be able to search for objects with value greater than' do
         @model.all(@integer_property.name.gte =&gt; 1).should include(@two)
       end
-      
+
       it &quot;should be able to search for objects with values equal to&quot; do
         @model.all(@integer_property.name.gte =&gt; 2).should include(@two)
       end
-      
+
       it &quot;should not find objects with a value less than&quot; do
         @model.all(@integer_property.name.gte =&gt; 3).should_not include(@two)
       end
     end
-    
+
     describe &quot;lt&quot; do
       it 'should be able to search for objects with value less than' do
         @model.all(@integer_property.name.lt =&gt; 3).should include(@two)
       end
-      
+
       it &quot;should not find objects with a value less than&quot; do
         @model.all(@integer_property.name.gt =&gt; 2).should_not include(@two)
       end
     end
-    
+
     describe &quot;lte&quot; do
       it 'should be able to search for objects with value less than' do
         @model.all(@integer_property.name.lte =&gt; 3).should include(@two)
       end
-      
+
       it &quot;should be able to search for objects with values equal to&quot; do
         @model.all(@integer_property.name.lte =&gt; 2).should include(@two)
       end
-      
+
       it &quot;should not find objects with a value less than&quot; do
         @model.all(@integer_property.name.lte =&gt; 1).should_not include(@two)
       end
     end
   end
-  
+
   describe &quot;limits&quot; do
     it 'should be able to limit the objects' do
       @model.all(:limit =&gt; 2).length.should == 2</diff>
      <filename>spec/semipublic/shared/adapter_shared_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d560adb92eb8051856bcbb33459a31d1207dd68e</id>
    </parent>
  </parents>
  <author>
    <name>Dan Kubb</name>
    <email>dan.kubb@autopilotmarketing.com</email>
  </author>
  <url>http://github.com/dkubb/dm-core/commit/577dbe5474cdb9d38363832a851d0db7257c9f61</url>
  <id>577dbe5474cdb9d38363832a851d0db7257c9f61</id>
  <committed-date>2008-11-18T22:22:25-08:00</committed-date>
  <authored-date>2008-11-18T22:22:25-08:00</authored-date>
  <message>Stripped whitespace with &quot;sake strip&quot;</message>
  <tree>4ace83ce7d3fd81b1ce42a9fa0997405f542d4c4</tree>
  <committer>
    <name>Dan Kubb</name>
    <email>dan.kubb@autopilotmarketing.com</email>
  </committer>
</commit>
