Sha256: e831bc3ffc1b3bc8610dde746f3d17bad3c189f6d5956db6ecb69dc165e97068
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
require 'yard' require 'jeweler' desc 'Generate documentation' YARD::Rake::YardocTask.new do |t| # t.title = 'Thinking Sphinx - ActiveRecord Sphinx Plugin' end Jeweler::Tasks.new do |gem| gem.name = "moneypools-thinking-sphinx" gem.summary = "A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching." gem.author = "Pat Allan" gem.email = "pat@freelancing-gods.com" gem.homepage = "http://ts.freelancing-gods.com" # s.rubyforge_project = "thinking-sphinx" gem.files = FileList[ "rails/*.rb", "lib/**/*.rb", "LICENCE", "README.textile", "tasks/**/*.rb", "tasks/**/*.rake", "vendor/**/*", "VERSION.yml" ] gem.test_files = FileList["spec/**/*_spec.rb"] gem.add_dependency 'activerecord', '>= 1.15.6' gem.post_install_message = <<-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 MESSAGE end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moneypools-thinking-sphinx-1.2.11 | tasks/distribution.rb |