Sha256: 660f961d0268d0036b4f204fc2d25c4125d68b7e782621aeda6c7a70fb53bd34

Contents?: true

Size: 665 Bytes

Versions: 5

Compression:

Stored size: 665 Bytes

Contents

require 'socket'
require 'timeout'
require 'riddle/client'
require 'riddle/client/filter'
require 'riddle/client/message'
require 'riddle/client/response'

module Riddle #:nodoc:
  class ConnectionError < StandardError #:nodoc:
  end
  
  module Version #:nodoc:
    Major   = 0
    Minor   = 9
    Tiny    = 8
    # Revision number for RubyForge's sake, taken from what Sphinx
    # outputs to the command line.
    Rev     = 1371
    # Release number to mark my own fixes, beyond feature parity with
    # Sphinx itself.
    Release = 0
    
    String      = [Major, Minor, Tiny].join('.')
    GemVersion  = [Major, Minor, Tiny, Rev, Release].join('.')
  end
end

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
DrMark-thinking-sphinx-0.9.8 lib/riddle.rb
DrMark-thinking-sphinx-0.9.9 lib/riddle.rb
freelancing-god-thinking-sphinx-0.9.8 lib/riddle.rb
ryanb-thinking-sphinx-0.9.8 lib/riddle.rb
ryanb-thinking_sphinx-0.9.8 lib/riddle.rb