From: "tenderlovemaking (Aaron Patterson)" Date: 2013-07-01T08:00:04+09:00 Subject: [ruby-core:55722] [CommonRuby - Feature #8586][Open] Add a simple file server to WEBrick Issue #8586 has been reported by tenderlovemaking (Aaron Patterson). ---------------------------------------- Feature #8586: Add a simple file server to WEBrick https://bugs.ruby-lang.org/issues/8586 Author: tenderlovemaking (Aaron Patterson) Status: Open Priority: Normal Assignee: nahi (Hiroshi Nakamura) Category: Target version: Hi, Frequently I need to run a simple file server in a directory, for example to temporarily share files, or try out some html / JS. If I want to do this with Ruby, I have to download a gem, or write a few lines with WEBrick. I'd like to add a simple file server that when required will just serve the files from the current directory like this: ### # Simple WEBrick file server. Usage: # # Start the file server, serving the files in the current directory # # $ ruby -rwebrick/simple -e start # # Start the file server, serving the files in the current directory on # port 5000. # # $ ruby -rwebrick/simple -e start 5000 # # Start the file server, serving the files in /tmp on port 5000. # # $ ruby -rwebrick/simple -e start 5000 /tmp I've attached the patch that implements this. Thanks! -- http://bugs.ruby-lang.org/