diff options
author | James Tucker <jftucker@gmail.com> | 2009-08-05 23:00:17 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-08-05 23:00:33 +0100 |
commit | b7052b8dc33d5769e94dfcec62d439c2dd18a8b9 (patch) | |
tree | bcab495758fa9e1e83666dd809256fe0463ee302 /railties/lib/commands | |
parent | cfd421daa2b04216e27d666361eb4053020e027d (diff) | |
download | rails-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/lib/commands')
-rw-r--r-- | railties/lib/commands/server.rb | 7 |
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", |