README.md in fuzzily-0.2.4 vs README.md in fuzzily-0.3.0

- old
+ new

@@ -13,11 +13,11 @@ Blurrily finds misspelled, prefix, or partial needles in a haystack of strings. It's a fast, [trigram](http://en.wikipedia.org/wiki/N-gram)-based, database-backed [fuzzy](http://en.wikipedia.org/wiki/Approximate_string_matching) string search/match engine for Rails. Loosely inspired from an [old blog post](http://unirec.blogspot.co.uk/2007/12/live-fuzzy-search-using-n-grams-in.html). -Tested with ActiveRecord (2.3, 3.0, 3.1, 3.2) on various Rubies (1.8.7, 1.9.2, 1.9.3, 2.0.0) and the most common adapters (SQLite3, MySQL, and PostgreSQL). +Tested with ActiveRecord (2.3, 3.0, 3.1, 3.2, 4.0) on various Rubies (1.8.7, 1.9.2, 1.9.3, 2.0.0) and the most common adapters (SQLite3, MySQL, and PostgreSQL). If your dateset is big, if you need yet more speed, or do not use ActiveRecord, check out [blurrily](http://github.com/mezis/blurrily), another gem (backed with a C extension) with the same intent. @@ -69,11 +69,13 @@ Search! MyStuff.find_by_fuzzy_name('Some Name', :limit => 10) # => records +You can force an update on a specific record with + MyStuff.find(123).update_fuzzy_name! ## Indexing more than one field Just list all the field you want to index, or call `fuzzily_searchable` more than once: @@ -129,6 +131,7 @@ 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request -Thanks to @bclennox and @fdegiuli for helping fix compatibility issues. +Thanks to @bclennox, @fdegiuli, @nickbender, @Shanison for pointing out +and/or helping on various issues.