Skip to content

Instantly share code, notes, and snippets.

@ryan-scott-dev
Created March 11, 2014 05:33
Show Gist options
  • Save ryan-scott-dev/9480013 to your computer and use it in GitHub Desktop.
Save ryan-scott-dev/9480013 to your computer and use it in GitHub Desktop.
Easy Ruby Fileserver
require 'webrick'
server = WEBrick::HTTPServer.new :Port => 8000, :DocumentRoot => './'
server.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment