Skip to content

Instantly share code, notes, and snippets.

@maeharin
Created January 5, 2013 10:20
Show Gist options
  • Save maeharin/4460872 to your computer and use it in GitHub Desktop.
Save maeharin/4460872 to your computer and use it in GitHub Desktop.
静的サーバ起動
# original: http://blog.udzura.jp/2011/02/08/rack-one-liner-server-simpler/
Rack::Server.new.tap{|a|
def a.app
Rack::Directory.new(".")
end
}.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment