Sha256: 0bf45e58acce8733ac4beb49c79476b551a798dcffb8c0da9bb00eaddb2f0711
Contents?: true
Size: 759 Bytes
Versions: 2
Compression:
Stored size: 759 Bytes
Contents
module ThinkingSphinx class AutoVersion def self.detect version = ThinkingSphinx::Configuration.instance.version case version when '0.9.8', '0.9.9' require "riddle/#{version}" when '1.10-beta', '1.10-id64-beta', '1.10-dev' require 'riddle/1.10' else unless version.nil? or version.empty? STDERR.puts "Unsupported version: #{version}" end 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 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-2.0.3 | lib/thinking_sphinx/auto_version.rb |
thinking-sphinx-1.4.4 | lib/thinking_sphinx/auto_version.rb |