module Thin

Constants

HTTP_STATUS_CODES

Every standard HTTP code mapped to the appropriate message. Stolent from Mongrel.

NAME
SERVER

Public Class Methods

linux?() click to toggle source
# File lib/thin/version.rb, line 25
def self.linux?
  RUBY_PLATFORM =~ /linux/
end
ruby_18?() click to toggle source
# File lib/thin/version.rb, line 29
def self.ruby_18?
  RUBY_VERSION =~ /^1\.8/
end
win?() click to toggle source
# File lib/thin/version.rb, line 21
def self.win?
  RUBY_PLATFORM =~ /mswin|mingw/
end