README.textile in hawkerb-thinking-sphinx-1.3.14 vs README.textile in hawkerb-thinking-sphinx-1.3.15

- old
+ new

@@ -1,4 +1,26 @@ +h1. Slightly modified version of Thinking Sphinx + +h2. Removed automated includes + +I this version, all of your models which use TS must manually include ThinkingSphinx modules. Example: + +class Person + + # Sphinx + include ThinkingSphinx::ActiveRecord::Scopes + include ThinkingSphinx::SearchMethods + include ThinkingSphinx::ActiveRecord::AttributeUpdates + include ThinkingSphinx::ActiveRecord::Delta + define_index do + ... + end + + ... +end + +Because of that, it is a lot easier to override default sphinx methods. + h1. Thinking Sphinx h2. Usage First, if you haven't done so already, check out the main "usage":http://ts.freelancing-gods.com/usage.html page. Once you've done that, the next place to look for information is the specific method docs - ThinkingSphinx::Search and ThinkingSphinx::Index::Builder in particular.