<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = &quot;acts-as-taggable-on&quot;
-  s.version = &quot;1.0.4&quot;
+  s.version = &quot;1.0.5&quot;
   s.date = &quot;2008-06-10&quot;
   s.summary = &quot;Tagging for ActiveRecord with custom contexts and advanced features.&quot;
   s.email = &quot;michael@intridea.com&quot;</diff>
      <filename>acts-as-taggable-on.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -105,6 +105,17 @@ describe &quot;Taggable&quot; do
     bob.save
     TaggableModel.find_tagged_with(&quot;spinning&quot;, :on =&gt; :rotors).should_not be_empty
   end
+
+  it &quot;should be able to use named scopes to chain tag finds&quot; do
+    bob = TaggableModel.create(:name =&gt; &quot;Bob&quot;, :tag_list =&gt; &quot;fitter, happier, more productive&quot;, :skill_list =&gt; &quot;ruby, rails, css&quot;)
+    frank = TaggableModel.create(:name =&gt; &quot;Frank&quot;, :tag_list =&gt; &quot;weaker, depressed, inefficient&quot;, :skill_list =&gt; &quot;ruby, rails, css&quot;)
+    steve = TaggableModel.create(:name =&gt; 'Steve', :tag_list =&gt; 'fitter, happier, more productive', :skill_list =&gt; 'c++, java, python')
+    
+    # Let's only find those productive Rails developers
+    TaggableModel.tagged_with('rails', :on =&gt; :skills).all(:order =&gt; 'taggable_models.name').should == [bob, frank]
+    TaggableModel.tagged_with('happier', :on =&gt; :tags).all(:order =&gt; 'taggable_models.name').should == [bob, steve]
+    TaggableModel.tagged_with('rails', :on =&gt; :skills).tagged_with('happier', :on =&gt; :tags).should == [bob]
+  end
   
   describe &quot;Single Table Inheritance&quot; do
     before do
@@ -133,4 +144,4 @@ describe &quot;Taggable&quot; do
       AlteredInheritingTaggableModel.find_tagged_with(&quot;fork&quot;, :on =&gt; :parts).first.should == @inherited_different
     end
   end
-end
\ No newline at end of file
+end</diff>
      <filename>spec/acts_as_taggable_on/taggable_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8cbacc62968999c9b8eeaa978a324306005c0ed6</id>
    </parent>
  </parents>
  <author>
    <name>Michael Bleigh</name>
    <email>michael@intridea.com</email>
  </author>
  <url>http://github.com/mbleigh/acts-as-taggable-on/commit/08b9d7d4c9ad9e46a5d1edb687d42f89739b70e8</url>
  <id>08b9d7d4c9ad9e46a5d1edb687d42f89739b70e8</id>
  <committed-date>2009-03-26T08:50:44-07:00</committed-date>
  <authored-date>2009-03-26T08:50:44-07:00</authored-date>
  <message>Bumping gemspec again.</message>
  <tree>98d83c50b9ca0802f44eb770d385436bb9e51f8c</tree>
  <committer>
    <name>Michael Bleigh</name>
    <email>michael@intridea.com</email>
  </committer>
</commit>
