aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJames Tucker <jftucker@gmail.com>2009-08-05 23:00:17 +0100
committerPratik Naik <pratiknaik@gmail.com>2009-08-05 23:00:33 +0100
commitb7052b8dc33d5769e94dfcec62d439c2dd18a8b9 (patch)
treebcab495758fa9e1e83666dd809256fe0463ee302 /railties
parentcfd421daa2b04216e27d666361eb4053020e027d (diff)
downloadrails-b7052b8dc33d5769e94dfcec62d439c2dd18a8b9.tar.gz
rails-b7052b8dc33d5769e94dfcec62d439c2dd18a8b9.tar.bz2
rails-b7052b8dc33d5769e94dfcec62d439c2dd18a8b9.zip
Dont require thin as the thin rack adapter is now upstream
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/commands/server.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/railties/lib/commands/server.rb b/railties/lib/commands/server.rb
index 01dd33fa8c..823916b1dc 100644
--- a/railties/lib/commands/server.rb
+++ b/railties/lib/commands/server.rb
@@ -3,13 +3,6 @@ require 'action_controller'
require 'fileutils'
require 'optparse'
-# TODO: Push Thin adapter upstream so we don't need worry about requiring it
-begin
- require_library_or_gem 'thin'
-rescue Exception
- # Thin not available
-end
-
options = {
:Port => 3000,
:Host => "0.0.0.0",