From a93ea88c0623b4f65af98c0eb55924c335bb3ac1 Mon Sep 17 00:00:00 2001 From: Bob Klosinski Date: Wed, 25 Jun 2008 16:40:00 -0500 Subject: Added Thin support to script/server. [#488 state:resolved] --- railties/lib/commands/servers/thin.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 railties/lib/commands/servers/thin.rb (limited to 'railties/lib/commands/servers/thin.rb') diff --git a/railties/lib/commands/servers/thin.rb b/railties/lib/commands/servers/thin.rb new file mode 100644 index 0000000000..833469cab1 --- /dev/null +++ b/railties/lib/commands/servers/thin.rb @@ -0,0 +1,25 @@ +require 'rbconfig' +require 'commands/servers/base' +require 'thin' + + +options = ARGV.clone +options.insert(0,'start') unless Thin::Runner.commands.include?(options[0]) + +thin = Thin::Runner.new(options) + +puts "=> Rails #{Rails.version} application starting on http://#{thin.options[:address]}:#{thin.options[:port]}" +puts "=> Ctrl-C to shutdown server" + +log = Pathname.new("#{File.expand_path(RAILS_ROOT)}/log/#{RAILS_ENV}.log").cleanpath +open(log, (File::WRONLY | File::APPEND | File::CREAT)) unless File.exist? log +tail_thread = tail(log) +trap(:INT) { exit } + +begin + thin.run! +ensure + tail_thread.kill if tail_thread + puts 'Exiting' +end + -- cgit v1.2.3