Sha256: c7626e391eff1e492036a9eac40de74b09ae9fc4ff35ccd6fd2765c061476221

Contents?: true

Size: 760 Bytes

Versions: 1

Compression:

Stored size: 760 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 = 1
    
    String      = [Major, Minor, Tiny].join('.')
    GemVersion  = [Major, Minor, Tiny, Rev, Release].join('.')
  end
  
  def self.escape(string)
    string.gsub(/[\(\)\|\-!@~"&\/]/) { |char| "\\#{char}" }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
freelancing-god-riddle-0.9.8.1371.1 lib/riddle.rb