Sha256: 6cd3e9f5d7bc41efe26d0d8d1f4bfc26131d691222ce850078259e346bd71876
Contents?: true
Size: 655 Bytes
Versions: 4
Compression:
Stored size: 655 Bytes
Contents
require 'socket' 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 = 1231 # Release number to mark my own fixes, beyond feature parity with # Sphinx itself. Release = 0 String = [Major, Minor, Tiny].join('.') + "rc2" GemVersion = [Major, Minor, Tiny, Rev, Release].join('.') end end
Version data entries
4 entries across 4 versions & 3 rubygems