<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -55,52 +55,72 @@ h1. RSpec Example
     require File.dirname(__FILE__) + '/../spec_helper'
 
     describe Friendship do
-      before(:each) do
-        @friendship = Friendship.new
-      end
+     before(:each) do
+       @friendship = Friendship.new
+     end
 
-      it &quot;should be valid&quot; do
-        @friendship.should be_valid
-      end
+     it &quot;should be valid&quot; do
+       @friendship.should be_valid
+     end
     end
 
     describe Friendship, &quot;between two users&quot; do
-      fixtures :users
-  
-      before(:each) do
-        @quentin = users(:quentin)
-        @bob = users(:aaron)
-        @wtf = User.create!(:login =&gt; 'a_user', :password =&gt; 'password', :password_confirmation =&gt; 'password', :email =&gt; 'poop@poop.com')
-      end
-  
-      it &quot;should acknowledge there is a friendship between them&quot; do
-        @bob.add_friend @quentin
-        @bob.add_friend @wtf
-        @quentin.add_friend @bob
-    
-        @bob.reload
-
-        @bob.is_a_fan_of.should include(@wtf)
-        @bob.is_a_fan_of.should_not include(@quentin)
-   
-        @bob.pending_mutual_friends.should include(@wtf)
-        @bob.pending_mutual_friends.should_not include(@quentin)
-
-        @wtf.mutual_friends.should be_empty
-        @wtf.fans_of_me.should include(@bob)
-    
-        @quentin.reload
-        @quentin.mutual_friends.should include(@bob)
-        @quentin.mutual_friends.should_not include(@wtf)
-    
-        @quentin.destroy_friendship_with @bob
-        @quentin.reload
-        @quentin.friends_by_me.should_not include(@bob)
-    
-      end
+     fixtures :users
+
+     before(:each) do
+       @quentin = users(:quentin)
+       @bob = users(:aaron)
+       @wtf = User.create!(:login =&gt; 'a_user', 
+                           :password =&gt; 'password', 
+                           :password_confirmation =&gt; 'password', 
+                           :email =&gt; 'poop@poop.com')
+     end
+
+     it &quot;should acknowledge there is a friendship between them&quot; do
+       @bob.add_friend @quentin
+       @bob.add_friend @wtf
+       @quentin.add_friend @bob
+
+       @bob.reload
+
+       @bob.is_a_fan_of.should include(@wtf)
+       @bob.is_a_fan_of.should_not include(@quentin)
+
+       @bob.pending_mutual_friends.should include(@wtf)
+       @bob.pending_mutual_friends.should_not include(@quentin)
+
+       @wtf.mutual_friends.should be_empty
+       @wtf.fans_of_me.should include(@bob)
+
+       @quentin.reload
+       @quentin.mutual_friends.should include(@bob)
+       @quentin.mutual_friends.should_not include(@wtf)
+
+       @quentin.destroy_friendship_with @bob
+       @quentin.reload
+       @quentin.friends_by_me.should_not include(@bob)
+
+     end
+
+     it &quot;should be able to tell you if two people are mutual friends&quot; do
+       @bob.add_friend @quentin
+       @bob.add_friend @wtf
+       @quentin.add_friend @bob
+       @bob.is_mutual_friends_with?(@quentin).should eql(true)
+       @bob.is_mutual_friends_with?(@wtf).should eql(false)
+     end
     end
   &lt;/code&gt;
 &lt;/pre&gt;
 
+h1. Changelog
+=======
+
+August 3, 2008
+ * Accepted changeset  &quot;868bc&quot;:http://github.com/pogopuffin/fischyfriends/commit/868bc89db99fb52385028b9679eb917548a447b6 by pogopuffin
+ * Added in specs against above changeset
+
+March 14, 2008
+  * First Release
 
 Copyright (c) 2008 [Daniel Fischer] / http://www.danielfischer.com, released under the MIT license</diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -57,10 +57,7 @@ module DanielFischer
       def is_friends_with?(friend)
         self.friends_by_me.include?(friend) ? true : false
       end
-      
-      def deny_friendship(friend)
-        Friendship.find(:first, :conditions =&gt; ['user_id = ? AND friend_id = ?', friend.id, self.id]).destroy
-      end
+    
       
       def is_mutual_friends_with?(friend)
         self.is_friends_with?(friend) and friend.is_friends_with?(self) ? true : false</diff>
      <filename>lib/fischyfriends.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>868bc89db99fb52385028b9679eb917548a447b6</id>
    </parent>
  </parents>
  <author>
    <name>DFischer</name>
    <email>me@danielfischer.com</email>
  </author>
  <url>http://github.com/dfischer/fischyfriends/commit/052d380036005307085c64252cdb9f098e43062a</url>
  <id>052d380036005307085c64252cdb9f098e43062a</id>
  <committed-date>2008-08-03T02:12:13-07:00</committed-date>
  <authored-date>2008-08-03T02:12:13-07:00</authored-date>
  <message>Accepted changeset 868bc from pogopuffin for method &quot;is_mutual_friends_with?&quot;

Also added a spec for above method.</message>
  <tree>9ffad1e44532405b1d565eef83e93e6f7bf275e0</tree>
  <committer>
    <name>DFischer</name>
    <email>me@danielfischer.com</email>
  </committer>
</commit>
