File: thin.rb

package info (click to toggle)
thin 1.8.2%2Bgit20250216.de6b618-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,320 kB
  • sloc: javascript: 6,108; ruby: 5,147; ansic: 1,738; sh: 21; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'rack/handler'
require_relative '../../thin/rackup/handler'

module Rack
  module Handler
    class Thin < ::Thin::Rackup::Handler
    end

    register :thin, Thin.to_s
  end
end