<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1 +1 @@
-default: &quot;--require features/support/env.rb --require features/step_definitions/alpha_steps.rb --require features/step_definitions/beta_steps.rb --require features/step_definitions/common_steps.rb --require features/step_definitions/datetime_delta_steps.rb --require features/step_definitions/delayed_delta_indexing_steps.rb --require features/step_definitions/extensible_delta_indexing_steps.rb --require features/step_definitions/facet_steps.rb --require features/step_definitions/find_arguments_steps.rb --require features/step_definitions/gamma_steps.rb --require features/step_definitions/scope_steps.rb --require features/step_definitions/search_steps.rb --require features/step_definitions/sphinx_steps.rb&quot;
+default: &quot;--require features/support/env.rb --require features/step_definitions/alpha_steps.rb --require features/step_definitions/beta_steps.rb --require features/step_definitions/common_steps.rb --require features/step_definitions/extensible_delta_indexing_steps.rb --require features/step_definitions/facet_steps.rb --require features/step_definitions/find_arguments_steps.rb --require features/step_definitions/gamma_steps.rb --require features/step_definitions/scope_steps.rb --require features/step_definitions/search_steps.rb --require features/step_definitions/sphinx_steps.rb&quot;</diff>
      <filename>cucumber.yml</filename>
    </modified>
    <modified>
      <diff>@@ -17,4 +17,4 @@ Feature: Searching across multiple model
   Scenario: Retrieving results from multiple models
     Given Sphinx is running
     When I search for ten
-    Then I should get 6 results
+    Then I should get 4 results</diff>
      <filename>features/searching_across_models.feature</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,5 @@
 Before do
   $queries_executed = []
-  ThinkingSphinx::Deltas::Job.cancel_thinking_sphinx_jobs
   
   @model      = nil
   @method     = :search</diff>
      <filename>features/step_definitions/common_steps.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,5 @@
 puts &lt;&lt;-MESSAGE
-With the release of Thinking Sphinx 1.1.18, there is one important change to
-note: previously, the default morphology for indexing was 'stem_en'. The new
-default is nothing, to avoid any unexpected behavior. If you wish to keep the
-old value though, you will need to add the following settings to your
-config/sphinx.yml file:
-
-development:
-  morphology: stem_en
-test:
-  morphology: stem_en
-production:
-  morphology: stem_en
-
-To understand morphologies/stemmers better, visit the following link:
-http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
+If you're upgrading, you should read this:
+http://freelancing-god.github.com/ts/en/upgrading.html
 
 MESSAGE
\ No newline at end of file</diff>
      <filename>install.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,4 @@
 require 'thinking_sphinx/deltas/default_delta'
-require 'thinking_sphinx/deltas/delayed_delta'
-require 'thinking_sphinx/deltas/datetime_delta'
 
 module ThinkingSphinx
   module Deltas</diff>
      <filename>lib/thinking_sphinx/deltas.rb</filename>
    </modified>
    <modified>
      <diff>@@ -65,14 +65,12 @@ namespace :thinking_sphinx do
   
   desc &quot;Index data for Sphinx using Thinking Sphinx's settings&quot;
   task :index =&gt; :app_env do
-    ThinkingSphinx::Deltas::Job.cancel_thinking_sphinx_jobs
-    
     config = ThinkingSphinx::Configuration.instance
     unless ENV[&quot;INDEX_ONLY&quot;] == &quot;true&quot;
       puts &quot;Generating Configuration to #{config.config_file}&quot;
       config.build
     end
-        
+    
     FileUtils.mkdir_p config.searchd_file_path
     cmd = &quot;#{config.bin_path}#{config.indexer_binary_name} --config \&quot;#{config.config_file}\&quot; --all&quot;
     cmd &lt;&lt; &quot; --rotate&quot; if sphinx_running?
@@ -86,30 +84,6 @@ namespace :thinking_sphinx do
     Rake::Task[&quot;thinking_sphinx:index&quot;].invoke
     Rake::Task[&quot;thinking_sphinx:start&quot;].invoke
   end
-  
-  namespace :index do
-    task :delta =&gt; :app_env do
-      ThinkingSphinx.indexed_models.select { |model|
-        model.constantize.sphinx_indexes.any? { |index| index.delta? }
-      }.each do |model|
-        model.constantize.sphinx_indexes.select { |index|
-          index.delta? &amp;&amp; index.delta_object.respond_to?(:delayed_index)
-        }.each { |index|
-          index.delta_object.delayed_index(index.model)
-        }
-      end
-    end
-  end
-  
-  desc &quot;Process stored delta index requests&quot;
-  task :delayed_delta =&gt; :app_env do
-    require 'delayed/worker'
-    
-    Delayed::Worker.new(
-      :min_priority =&gt; ENV['MIN_PRIORITY'],
-      :max_priority =&gt; ENV['MAX_PRIORITY']
-    ).start
-  end
 end
 
 namespace :ts do
@@ -123,10 +97,6 @@ namespace :ts do
   task :stop    =&gt; &quot;thinking_sphinx:stop&quot;
   desc &quot;Index data for Sphinx using Thinking Sphinx's settings&quot;
   task :in      =&gt; &quot;thinking_sphinx:index&quot;
-  namespace :in do
-    desc &quot;Index Thinking Sphinx datetime delta indexes&quot;
-    task :delta =&gt; &quot;thinking_sphinx:index:delta&quot;
-  end
   task :index   =&gt; &quot;thinking_sphinx:index&quot;
   desc &quot;Restart Sphinx&quot;
   task :restart =&gt; &quot;thinking_sphinx:restart&quot;
@@ -136,8 +106,6 @@ namespace :ts do
   task :config  =&gt; &quot;thinking_sphinx:configure&quot;
   desc &quot;Stop Sphinx (if it's running), rebuild the indexes, and start Sphinx&quot;
   task :rebuild =&gt; &quot;thinking_sphinx:rebuild&quot;
-  desc &quot;Process stored delta index requests&quot;
-  task :dd      =&gt; &quot;thinking_sphinx:delayed_delta&quot;
 end
 
 def sphinx_pid</diff>
      <filename>lib/thinking_sphinx/tasks.rb</filename>
    </modified>
    <modified>
      <diff>@@ -33,21 +33,8 @@ Jeweler::Tasks.new do |gem|
   gem.add_dependency 'activerecord', '&gt;= 1.15.6'
   
   gem.post_install_message = &lt;&lt;-MESSAGE
-With the release of Thinking Sphinx 1.1.18, there is one important change to
-note: previously, the default morphology for indexing was 'stem_en'. The new
-default is nil, to avoid any unexpected behavior. If you wish to keep the old
-value though, you will need to add the following settings to your
-config/sphinx.yml file:
-
-development:
-  morphology: stem_en
-test:
-  morphology: stem_en
-production:
-  morphology: stem_en
-
-To understand morphologies/stemmers better, visit the following link:
-http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
+If you're upgrading, you should read this:
+http://freelancing-god.github.com/ts/en/upgrading.html
 
 MESSAGE
 end</diff>
      <filename>tasks/distribution.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,11 +5,11 @@
 
 Gem::Specification.new do |s|
   s.name = %q{thinking-sphinx}
-  s.version = &quot;1.2.13&quot;
+  s.version = &quot;1.3.0&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Pat Allan&quot;]
-  s.date = %q{2009-11-01}
+  s.date = %q{2009-11-04}
   s.description = %q{A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.}
   s.email = %q{pat@freelancing-gods.com}
   s.extra_rdoc_files = [
@@ -37,12 +37,7 @@ Gem::Specification.new do |s|
      &quot;lib/thinking_sphinx/core/array.rb&quot;,
      &quot;lib/thinking_sphinx/core/string.rb&quot;,
      &quot;lib/thinking_sphinx/deltas.rb&quot;,
-     &quot;lib/thinking_sphinx/deltas/datetime_delta.rb&quot;,
      &quot;lib/thinking_sphinx/deltas/default_delta.rb&quot;,
-     &quot;lib/thinking_sphinx/deltas/delayed_delta.rb&quot;,
-     &quot;lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb&quot;,
-     &quot;lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb&quot;,
-     &quot;lib/thinking_sphinx/deltas/delayed_delta/job.rb&quot;,
      &quot;lib/thinking_sphinx/deploy/capistrano.rb&quot;,
      &quot;lib/thinking_sphinx/excerpter.rb&quot;,
      &quot;lib/thinking_sphinx/facet.rb&quot;,
@@ -71,10 +66,6 @@ Gem::Specification.new do |s|
      &quot;vendor/after_commit/lib/after_commit/active_record.rb&quot;,
      &quot;vendor/after_commit/lib/after_commit/connection_adapters.rb&quot;,
      &quot;vendor/after_commit/test/after_commit_test.rb&quot;,
-     &quot;vendor/delayed_job/lib/delayed/job.rb&quot;,
-     &quot;vendor/delayed_job/lib/delayed/message_sending.rb&quot;,
-     &quot;vendor/delayed_job/lib/delayed/performable_method.rb&quot;,
-     &quot;vendor/delayed_job/lib/delayed/worker.rb&quot;,
      &quot;vendor/riddle/lib/riddle.rb&quot;,
      &quot;vendor/riddle/lib/riddle/client.rb&quot;,
      &quot;vendor/riddle/lib/riddle/client/filter.rb&quot;,
@@ -93,21 +84,8 @@ Gem::Specification.new do |s|
      &quot;vendor/riddle/lib/riddle/controller.rb&quot;
   ]
   s.homepage = %q{http://ts.freelancing-gods.com}
-  s.post_install_message = %q{With the release of Thinking Sphinx 1.1.18, there is one important change to
-note: previously, the default morphology for indexing was 'stem_en'. The new
-default is nil, to avoid any unexpected behavior. If you wish to keep the old
-value though, you will need to add the following settings to your
-config/sphinx.yml file:
-
-development:
-  morphology: stem_en
-test:
-  morphology: stem_en
-production:
-  morphology: stem_en
-
-To understand morphologies/stemmers better, visit the following link:
-http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
+  s.post_install_message = %q{If you're upgrading, you should read this:
+http://freelancing-god.github.com/ts/en/upgrading.html
 
 }
   s.rdoc_options = [&quot;--charset=UTF-8&quot;]
@@ -118,8 +96,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
     &quot;features/alternate_primary_key.feature&quot;,
      &quot;features/attribute_transformation.feature&quot;,
      &quot;features/attribute_updates.feature&quot;,
-     &quot;features/datetime_deltas.feature&quot;,
-     &quot;features/delayed_delta_indexing.feature&quot;,
      &quot;features/deleting_instances.feature&quot;,
      &quot;features/direct_attributes.feature&quot;,
      &quot;features/excerpts.feature&quot;,
@@ -137,8 +113,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/step_definitions/alpha_steps.rb&quot;,
      &quot;features/step_definitions/beta_steps.rb&quot;,
      &quot;features/step_definitions/common_steps.rb&quot;,
-     &quot;features/step_definitions/datetime_delta_steps.rb&quot;,
-     &quot;features/step_definitions/delayed_delta_indexing_steps.rb&quot;,
      &quot;features/step_definitions/extensible_delta_indexing_steps.rb&quot;,
      &quot;features/step_definitions/facet_steps.rb&quot;,
      &quot;features/step_definitions/find_arguments_steps.rb&quot;,
@@ -161,7 +135,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/db/fixtures/categories.rb&quot;,
      &quot;features/support/db/fixtures/cats.rb&quot;,
      &quot;features/support/db/fixtures/comments.rb&quot;,
-     &quot;features/support/db/fixtures/delayed_betas.rb&quot;,
      &quot;features/support/db/fixtures/developers.rb&quot;,
      &quot;features/support/db/fixtures/dogs.rb&quot;,
      &quot;features/support/db/fixtures/extensible_betas.rb&quot;,
@@ -170,7 +143,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/db/fixtures/posts.rb&quot;,
      &quot;features/support/db/fixtures/robots.rb&quot;,
      &quot;features/support/db/fixtures/tags.rb&quot;,
-     &quot;features/support/db/fixtures/thetas.rb&quot;,
      &quot;features/support/db/migrations&quot;,
      &quot;features/support/db/migrations/create_alphas.rb&quot;,
      &quot;features/support/db/migrations/create_animals.rb&quot;,
@@ -180,7 +152,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/db/migrations/create_boxes.rb&quot;,
      &quot;features/support/db/migrations/create_categories.rb&quot;,
      &quot;features/support/db/migrations/create_comments.rb&quot;,
-     &quot;features/support/db/migrations/create_delayed_betas.rb&quot;,
      &quot;features/support/db/migrations/create_developers.rb&quot;,
      &quot;features/support/db/migrations/create_extensible_betas.rb&quot;,
      &quot;features/support/db/migrations/create_gammas.rb&quot;,
@@ -189,7 +160,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/db/migrations/create_robots.rb&quot;,
      &quot;features/support/db/migrations/create_taggings.rb&quot;,
      &quot;features/support/db/migrations/create_tags.rb&quot;,
-     &quot;features/support/db/migrations/create_thetas.rb&quot;,
      &quot;features/support/db/mysql.rb&quot;,
      &quot;features/support/db/postgresql.rb&quot;,
      &quot;features/support/env.rb&quot;,
@@ -204,7 +174,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/models/cat.rb&quot;,
      &quot;features/support/models/category.rb&quot;,
      &quot;features/support/models/comment.rb&quot;,
-     &quot;features/support/models/delayed_beta.rb&quot;,
      &quot;features/support/models/developer.rb&quot;,
      &quot;features/support/models/dog.rb&quot;,
      &quot;features/support/models/extensible_beta.rb&quot;,
@@ -214,7 +183,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;features/support/models/robot.rb&quot;,
      &quot;features/support/models/tag.rb&quot;,
      &quot;features/support/models/tagging.rb&quot;,
-     &quot;features/support/models/theta.rb&quot;,
      &quot;features/support/post_database.rb&quot;,
      &quot;spec/lib/thinking_sphinx/active_record/delta_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/active_record/has_many_association_spec.rb&quot;,
@@ -225,7 +193,6 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
      &quot;spec/lib/thinking_sphinx/configuration_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/core/array_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/core/string_spec.rb&quot;,
-     &quot;spec/lib/thinking_sphinx/deltas/job_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/excerpter_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/facet_search_spec.rb&quot;,
      &quot;spec/lib/thinking_sphinx/facet_spec.rb&quot;,</diff>
      <filename>thinking-sphinx.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>features/datetime_deltas.feature</filename>
    </removed>
    <removed>
      <filename>features/step_definitions/datetime_delta_steps.rb</filename>
    </removed>
    <removed>
      <filename>features/support/db/fixtures/thetas.rb</filename>
    </removed>
    <removed>
      <filename>features/support/db/migrations/create_thetas.rb</filename>
    </removed>
    <removed>
      <filename>features/support/models/theta.rb</filename>
    </removed>
    <removed>
      <filename>lib/thinking_sphinx/deltas/datetime_delta.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>8cb1de81887435f6fc908531270b6727482ca5b5</id>
    </parent>
  </parents>
  <author>
    <name>Pat Allan</name>
    <email>pat@freelancing-gods.com</email>
  </author>
  <url>http://github.com/freelancing-god/thinking-sphinx/commit/4f1ab0886ea01d45502468ca5b6c82e91388570c</url>
  <id>4f1ab0886ea01d45502468ca5b6c82e91388570c</id>
  <committed-date>2009-11-03T18:35:01-08:00</committed-date>
  <authored-date>2009-11-03T18:35:01-08:00</authored-date>
  <message>Removing datetime deltas, finishing changes for 1.3.0</message>
  <tree>1a5c2416986f094b3e37162c5c1d5e34adfb5a44</tree>
  <committer>
    <name>Pat Allan</name>
    <email>pat@freelancing-gods.com</email>
  </committer>
</commit>
