--- !ruby/object:Gem::Specification 
name: hariton-thinking-sphinx
version: !ruby/object:Gem::Version 
  version: 1.2.11
platform: ruby
authors: 
- Pat Allan
autorequire: 
bindir: bin
cert_chain: []

date: 2009-09-13 00:00:00 -07:00
default_executable: 
dependencies: 
- !ruby/object:Gem::Dependency 
  name: activerecord
  type: :runtime
  version_requirement: 
  version_requirements: !ruby/object:Gem::Requirement 
    requirements: 
    - - ">="
      - !ruby/object:Gem::Version 
        version: 1.15.6
    version: 
description: 
email: pat@freelancing-gods.com
executables: []

extensions: []

extra_rdoc_files: 
- README.textile
files: 
- LICENCE
- README.textile
- VERSION.yml
- lib/thinking_sphinx.rb
- lib/thinking_sphinx/active_record.rb
- lib/thinking_sphinx/active_record/attribute_updates.rb
- lib/thinking_sphinx/active_record/delta.rb
- lib/thinking_sphinx/active_record/has_many_association.rb
- lib/thinking_sphinx/active_record/scopes.rb
- lib/thinking_sphinx/adapters/abstract_adapter.rb
- lib/thinking_sphinx/adapters/mysql_adapter.rb
- lib/thinking_sphinx/adapters/postgresql_adapter.rb
- lib/thinking_sphinx/association.rb
- lib/thinking_sphinx/attribute.rb
- lib/thinking_sphinx/class_facet.rb
- lib/thinking_sphinx/configuration.rb
- lib/thinking_sphinx/core/array.rb
- lib/thinking_sphinx/core/string.rb
- lib/thinking_sphinx/deltas.rb
- lib/thinking_sphinx/deltas/datetime_delta.rb
- lib/thinking_sphinx/deltas/default_delta.rb
- lib/thinking_sphinx/deltas/delayed_delta.rb
- lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb
- lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb
- lib/thinking_sphinx/deltas/delayed_delta/job.rb
- lib/thinking_sphinx/deploy/capistrano.rb
- lib/thinking_sphinx/excerpter.rb
- lib/thinking_sphinx/facet.rb
- lib/thinking_sphinx/facet_search.rb
- lib/thinking_sphinx/field.rb
- lib/thinking_sphinx/index.rb
- lib/thinking_sphinx/index/builder.rb
- lib/thinking_sphinx/index/faux_column.rb
- lib/thinking_sphinx/property.rb
- lib/thinking_sphinx/rails_additions.rb
- lib/thinking_sphinx/search.rb
- lib/thinking_sphinx/search_methods.rb
- lib/thinking_sphinx/source.rb
- lib/thinking_sphinx/source/internal_properties.rb
- lib/thinking_sphinx/source/sql.rb
- lib/thinking_sphinx/tasks.rb
- rails/init.rb
- tasks/distribution.rb
- tasks/rails.rake
- tasks/testing.rb
- vendor/after_commit/LICENSE
- vendor/after_commit/README
- vendor/after_commit/Rakefile
- vendor/after_commit/init.rb
- vendor/after_commit/lib/after_commit.rb
- vendor/after_commit/lib/after_commit/active_record.rb
- vendor/after_commit/lib/after_commit/connection_adapters.rb
- vendor/after_commit/test/after_commit_test.rb
- vendor/delayed_job/lib/delayed/job.rb
- vendor/delayed_job/lib/delayed/message_sending.rb
- vendor/delayed_job/lib/delayed/performable_method.rb
- vendor/delayed_job/lib/delayed/worker.rb
- vendor/riddle/lib/riddle.rb
- vendor/riddle/lib/riddle/client.rb
- vendor/riddle/lib/riddle/client/filter.rb
- vendor/riddle/lib/riddle/client/message.rb
- vendor/riddle/lib/riddle/client/response.rb
- vendor/riddle/lib/riddle/configuration.rb
- vendor/riddle/lib/riddle/configuration/distributed_index.rb
- vendor/riddle/lib/riddle/configuration/index.rb
- vendor/riddle/lib/riddle/configuration/indexer.rb
- vendor/riddle/lib/riddle/configuration/remote_index.rb
- vendor/riddle/lib/riddle/configuration/searchd.rb
- vendor/riddle/lib/riddle/configuration/section.rb
- vendor/riddle/lib/riddle/configuration/source.rb
- vendor/riddle/lib/riddle/configuration/sql_source.rb
- vendor/riddle/lib/riddle/configuration/xml_source.rb
- vendor/riddle/lib/riddle/controller.rb
has_rdoc: false
homepage: http://ts.freelancing-gods.com
licenses: 
post_install_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
  
rdoc_options: 
- --charset=UTF-8
require_paths: 
- lib
required_ruby_version: !ruby/object:Gem::Requirement 
  requirements: 
  - - ">="
    - !ruby/object:Gem::Version 
      version: "0"
  version: 
required_rubygems_version: !ruby/object:Gem::Requirement 
  requirements: 
  - - ">="
    - !ruby/object:Gem::Version 
      version: "0"
  version: 
requirements: []

rubyforge_project: 
rubygems_version: 1.3.5
signing_key: 
specification_version: 3
summary: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
test_files: 
- spec/lib/thinking_sphinx/active_record/delta_spec.rb
- spec/lib/thinking_sphinx/active_record/has_many_association_spec.rb
- spec/lib/thinking_sphinx/active_record/scopes_spec.rb
- spec/lib/thinking_sphinx/active_record_spec.rb
- spec/lib/thinking_sphinx/association_spec.rb
- spec/lib/thinking_sphinx/attribute_spec.rb
- spec/lib/thinking_sphinx/configuration_spec.rb
- spec/lib/thinking_sphinx/core/array_spec.rb
- spec/lib/thinking_sphinx/core/string_spec.rb
- spec/lib/thinking_sphinx/excerpter_spec.rb
- spec/lib/thinking_sphinx/facet_search_spec.rb
- spec/lib/thinking_sphinx/facet_spec.rb
- spec/lib/thinking_sphinx/field_spec.rb
- spec/lib/thinking_sphinx/index/builder_spec.rb
- spec/lib/thinking_sphinx/index/faux_column_spec.rb
- spec/lib/thinking_sphinx/index_spec.rb
- spec/lib/thinking_sphinx/rails_additions_spec.rb
- spec/lib/thinking_sphinx/search_methods_spec.rb
- spec/lib/thinking_sphinx/search_spec.rb
- spec/lib/thinking_sphinx/source_spec.rb
- spec/lib/thinking_sphinx_spec.rb