Sha256: 9c2473d44742c504d131f4cddf4fa64e7a83f171da685b6e4977efcd34e314a4

Contents?: true

Size: 1.43 KB

Versions: 15

Compression:

Stored size: 1.43 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      = "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

15 entries across 15 versions & 6 rubygems

Version Path
DrMark-thinking-sphinx-1.2.5 tasks/distribution.rb
DrMark-thinking-sphinx-1.2.6 tasks/distribution.rb
bterlson-thinking-sphinx-1.2.8 tasks/distribution.rb
ebeigarts-thinking-sphinx-1.2.10 tasks/distribution.rb
factorylabs-thinking-sphinx-1.2.7 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.10 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.11 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.6 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.7 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.8 tasks/distribution.rb
freelancing-god-thinking-sphinx-1.2.9 tasks/distribution.rb
hariton-thinking-sphinx-1.2.11.2 tasks/distribution.rb
hariton-thinking-sphinx-1.2.11 tasks/distribution.rb
hariton-thinking-sphinx-1.2.7.0 tasks/distribution.rb
hariton-thinking-sphinx-1.2.7.1 tasks/distribution.rb