Class: ThinkingSphinx::AutoVersion

Inherits:
Object
  • Object
show all
Defined in:
lib/thinking_sphinx/auto_version.rb

Class Method Summary collapse

Class Method Details

.detectObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/thinking_sphinx/auto_version.rb', line 3

def self.detect
  version = ThinkingSphinx::Configuration.instance.controller.sphinx_version
  case version
  when '0.9.8', '0.9.9'
    require "riddle/#{version}"
  else
    STDERR.puts %Q{
Sphinx cannot be found on your system. You may need to configure the following
settings in your config/sphinx.yml file:
  * bin_path
  * searchd_binary_name
  * indexer_binary_name

For more information, read the documentation:
http://freelancing-god.github.com/ts/en/advanced_config.html
}
  end
end