<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -49,7 +49,7 @@ include the following in your model class (specifiying the fields you want to ge
 
 &lt;tt&gt;acts_as_ferret :fields =&gt; [ :title, :description ]&lt;/tt&gt;
 
-now you can use ModelClass.find_by_contents(query) to find instances of your model
+now you can use ModelClass.find_with_ferret(query) to find instances of your model
 whose indexed fields match a given query. All query terms are required by default, 
 but explicit OR queries are possible. This differs from the ferret default, but 
 imho is the more often needed/expected behaviour (more query terms result in </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -60,7 +60,7 @@ require 'rdig_adapter'
 # include the following in your model class (specifiying the fields you want to get indexed):
 # acts_as_ferret :fields =&gt; [ :title, :description ]
 #
-# now you can use ModelClass.find_by_contents(query) to find instances of your model
+# now you can use ModelClass.find_with_ferret(query) to find instances of your model
 # whose indexed fields match a given query. All query terms are required by default, but 
 # explicit OR queries are possible. This differs from the ferret default, but imho is the more
 # often needed/expected behaviour (more query terms result in less results).</diff>
      <filename>lib/acts_as_ferret.rb</filename>
    </modified>
    <modified>
      <diff>@@ -169,7 +169,7 @@ module ActsAsFerret
     # Useful e.g. if you want to search across models or do not want to fetch
     # all result records (yet).
     #
-    # Options are the same as for find_by_contents
+    # Options are the same as for find_with_ferret
     #
     # A block can be given too, it will be executed with every result:
     # find_ids_with_ferret(q, options) do |model, id, score|</diff>
      <filename>lib/class_methods.rb</filename>
    </modified>
    <modified>
      <diff>@@ -29,8 +29,8 @@ module ActsAsFerret #:nodoc:
         #                                           equals Ferret's internal similarity implementation)
         # :analyzer =&gt; 'Ferret::Analysis::StandardAnalyzer' # class name of the analyzer to use
         # :append_to_query =&gt; nil # proc taking a query object as argument, which will be called after generating the query. can be used to further manipulate the query used to find related documents, i.e. to constrain the search to a given class in single table inheritance scenarios
-        # ferret_options : Ferret options handed over to find_by_contents (i.e. for limits and sorting)
-        # ar_options : options handed over to find_by_contents for AR scoping
+        # ferret_options : Ferret options handed over to find_with_ferret (i.e. for limits and sorting)
+        # ar_options : options handed over to find_with_ferret for AR scoping
         def more_like_this(options = {}, ferret_options = {}, ar_options = {})
           options = {
             :field_names =&gt; nil,  # Default field names
@@ -44,7 +44,7 @@ module ActsAsFerret #:nodoc:
             :similarity =&gt; 'ActsAsFerret::MoreLikeThis::DefaultAAFSimilarity',  # class name of the similarity implementation to use
             :analyzer =&gt; 'Ferret::Analysis::StandardAnalyzer', # class name of the analyzer to use
             :append_to_query =&gt; nil,
-            :base_class =&gt; self.class # base class to use for querying, useful in STI scenarios where BaseClass.find_by_contents can be used to retrieve results from other classes, too
+            :base_class =&gt; self.class # base class to use for querying, useful in STI scenarios where BaseClass.find_with_ferret can be used to retrieve results from other classes, too
           }.update(options)
           #index.search_each('id:*') do |doc, score|
           #  puts &quot;#{doc} == #{index[doc][:description]}&quot;</diff>
      <filename>lib/more_like_this.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4fad5817a673c414003db3a8df6de64088b1d341</id>
    </parent>
  </parents>
  <author>
    <name>Mike Boone</name>
    <email>mike@boonedocks.net</email>
  </author>
  <url>http://github.com/tvdeyen/acts_as_ferret/commit/fdc49aa394d5a107bbb805a295cf30f35a070430</url>
  <id>fdc49aa394d5a107bbb805a295cf30f35a070430</id>
  <committed-date>2009-04-02T04:25:10-07:00</committed-date>
  <authored-date>2009-04-02T04:25:10-07:00</authored-date>
  <message>Changed find_by_contents references to find_with_ferret</message>
  <tree>b40f16c51889fe059c8894438783f36c7e5097fd</tree>
  <committer>
    <name>Mike Boone</name>
    <email>mike@boonedocks.net</email>
  </committer>
</commit>
