<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,7 @@
+*0.1.2* (August 28th, 2008)
+
+* scope_builder can be called on association proxy
+
 *0.1.1* (June 26th, 2008)
 
 * scope_builder can be called on any Scope</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -1,16 +1,14 @@
 CHANGELOG
 lib/scope_builder/builder.rb
 lib/scope_builder/model_additions.rb
-lib/scope_builder/scope_additions.rb
 lib/scope_builder.rb
 LICENSE
 Manifest
 README
 scope-builder.gemspec
+spec/models/category.rb
 spec/models/product.rb
 spec/scope_builder/builder_spec.rb
 spec/spec_helper.rb
-spec/test.sqlite3
 tasks/deployment.rake
 tasks/spec.rake
-TODO</diff>
      <filename>Manifest</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,14 @@
 require 'rubygems'
 require 'rake'
- 
-begin
-  require 'echoe'
+require 'echoe' 
 
-  Echoe.new('scope-builder', '0.1.1') do |p|
-    p.summary        = &quot;Build up named scopes conditionally.&quot;
-    p.description    = &quot;Build up named scopes conditionally.&quot;
-    p.url            = &quot;http://github.com/ryanb/scope-builder&quot;
-    p.author         = 'Ryan Bates'
-    p.email          = &quot;ryan (at) railscasts (dot) com&quot;
-    p.ignore_pattern = [&quot;script/*&quot;]
-  end
-
-rescue LoadError =&gt; boom
-  puts &quot;You are missing a dependency required for meta-operations on this gem.&quot;
-  puts &quot;#{boom.to_s.capitalize}.&quot;
+Echoe.new('scope-builder', '0.1.2') do |p|
+  p.summary        = &quot;Build up named scopes conditionally.&quot;
+  p.description    = &quot;Build up named scopes conditionally.&quot;
+  p.url            = &quot;http://github.com/ryanb/scope-builder&quot;
+  p.author         = 'Ryan Bates'
+  p.email          = &quot;ryan (at) railscasts (dot) com&quot;
+  p.ignore_pattern = [&quot;script/*&quot;, &quot;**/*.sqlite3&quot;]
 end
 
 Dir[&quot;#{File.dirname(__FILE__)}/tasks/*.rake&quot;].sort.each { |ext| load ext }</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,18 @@
 
-# Gem::Specification for Scope-builder-0.1.1
+# Gem::Specification for Scope-builder-0.1.2
 # Originally generated by Echoe
 
 Gem::Specification.new do |s|
   s.name = %q{scope-builder}
-  s.version = &quot;0.1.1&quot;
+  s.version = &quot;0.1.2&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Ryan Bates&quot;]
-  s.date = %q{2008-06-26}
+  s.date = %q{2008-08-28}
   s.description = %q{Build up named scopes conditionally.}
   s.email = %q{ryan (at) railscasts (dot) com}
-  s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;lib/scope_builder/builder.rb&quot;, &quot;lib/scope_builder/model_additions.rb&quot;, &quot;lib/scope_builder/scope_additions.rb&quot;, &quot;lib/scope_builder.rb&quot;, &quot;LICENSE&quot;, &quot;README&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/spec.rake&quot;, &quot;TODO&quot;]
-  s.files = [&quot;CHANGELOG&quot;, &quot;lib/scope_builder/builder.rb&quot;, &quot;lib/scope_builder/model_additions.rb&quot;, &quot;lib/scope_builder/scope_additions.rb&quot;, &quot;lib/scope_builder.rb&quot;, &quot;LICENSE&quot;, &quot;Manifest&quot;, &quot;README&quot;, &quot;scope-builder.gemspec&quot;, &quot;spec/models/product.rb&quot;, &quot;spec/scope_builder/builder_spec.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/test.sqlite3&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/spec.rake&quot;, &quot;TODO&quot;]
+  s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;lib/scope_builder/builder.rb&quot;, &quot;lib/scope_builder/model_additions.rb&quot;, &quot;lib/scope_builder.rb&quot;, &quot;LICENSE&quot;, &quot;README&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/spec.rake&quot;]
+  s.files = [&quot;CHANGELOG&quot;, &quot;lib/scope_builder/builder.rb&quot;, &quot;lib/scope_builder/model_additions.rb&quot;, &quot;lib/scope_builder.rb&quot;, &quot;LICENSE&quot;, &quot;Manifest&quot;, &quot;README&quot;, &quot;scope-builder.gemspec&quot;, &quot;spec/models/category.rb&quot;, &quot;spec/models/product.rb&quot;, &quot;spec/scope_builder/builder_spec.rb&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/spec.rake&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://github.com/ryanb/scope-builder}
   s.rdoc_options = [&quot;--line-numbers&quot;, &quot;--inline-source&quot;, &quot;--title&quot;, &quot;Scope-builder&quot;, &quot;--main&quot;, &quot;README&quot;]
@@ -37,22 +37,15 @@ end
 # 
 # require 'rubygems'
 # require 'rake'
-#  
-# begin
-#   require 'echoe'
+# require 'echoe' 
 # 
-#   Echoe.new('scope-builder', '0.1.1') do |p|
-#     p.summary        = &quot;Build up named scopes conditionally.&quot;
-#     p.description    = &quot;Build up named scopes conditionally.&quot;
-#     p.url            = &quot;http://github.com/ryanb/scope-builder&quot;
-#     p.author         = 'Ryan Bates'
-#     p.email          = &quot;ryan (at) railscasts (dot) com&quot;
-#     p.ignore_pattern = [&quot;script/*&quot;]
-#   end
-# 
-# rescue LoadError =&gt; boom
-#   puts &quot;You are missing a dependency required for meta-operations on this gem.&quot;
-#   puts &quot;#{boom.to_s.capitalize}.&quot;
+# Echoe.new('scope-builder', '0.1.2') do |p|
+#   p.summary        = &quot;Build up named scopes conditionally.&quot;
+#   p.description    = &quot;Build up named scopes conditionally.&quot;
+#   p.url            = &quot;http://github.com/ryanb/scope-builder&quot;
+#   p.author         = 'Ryan Bates'
+#   p.email          = &quot;ryan (at) railscasts (dot) com&quot;
+#   p.ignore_pattern = [&quot;script/*&quot;, &quot;**/*.sqlite3&quot;]
 # end
 # 
 # Dir[&quot;#{File.dirname(__FILE__)}/tasks/*.rake&quot;].sort.each { |ext| load ext }</diff>
      <filename>scope-builder.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>TODO</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>610c8e1c08123a6dbe179d6466220e9625179f0c</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Bates</name>
    <email>ryan@railscasts.com</email>
  </author>
  <url>http://github.com/ryanb/scope-builder/commit/1b66d6056eeb3bd18037c5a22ab0f44f198027d3</url>
  <id>1b66d6056eeb3bd18037c5a22ab0f44f198027d3</id>
  <committed-date>2008-08-28T07:10:35-07:00</committed-date>
  <authored-date>2008-08-28T07:10:35-07:00</authored-date>
  <message>releasing v0.1.2</message>
  <tree>a7cf65cde5992df736e51c37244c27c1801febb2</tree>
  <committer>
    <name>Ryan Bates</name>
    <email>ryan@railscasts.com</email>
  </committer>
</commit>
