Sha256: 1765168a4bb3357921ebfc76a778264089d47c2dc42062e311567bc6867f1e47
Contents?: true
Size: 661 Bytes
Versions: 47
Compression:
Stored size: 661 Bytes
Contents
module Thin # Raised when a feature is not supported on the # current platform. class PlatformNotSupported < RuntimeError; end module VERSION #:nodoc: MAJOR = 1 MINOR = 3 TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') CODENAME = "Triple Espresso".freeze RACK = [1, 0].freeze # Rack protocol version end NAME = 'thin'.freeze SERVER = "#{NAME} #{VERSION::STRING} codename #{VERSION::CODENAME}".freeze def self.win? RUBY_PLATFORM =~ /mswin|mingw/ end def self.linux? RUBY_PLATFORM =~ /linux/ end def self.ruby_18? RUBY_VERSION =~ /^1\.8/ end end
Version data entries
47 entries across 47 versions & 2 rubygems