A one-line web server in Ruby
Prodded by a tweet, here's how to serve a directory in one line of Ruby:
ruby -rwebrick -e'WEBrick::HTTPServer.new(:Port => 3000, :DocumentRoot => Dir.pwd).start'
Handy for sharing files at a conference, for example.
Disagree? Found a typo? Got a question? If you'd like to have a conversation about this post, email craig@barkingiguana.com. I don't bite.