public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
macournoyer (author)
Fri Feb 01 20:43:41 -0800 2008
commit  401ade74083354c0a180324a00d18c50e7c5f88c
tree    7e330c734283629bc53547d1d69409620916abb3
parent  2a7e1025d3e119720dac8fe61df82d2e19fb8434
thin / bin / thin
100755 6 lines (5 sloc) 0.176 kb
1
2
3
4
5
6
#!/usr/bin/env ruby
# Thin command line interface script.
# Run <tt>thin -h</tt> to get more usage.
require File.dirname(__FILE__) + '/../lib/thin'
 
Thin::Runner.new(ARGV).run!