aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Code/Blocks/syntax/tests/webrick.rb')
-rw-r--r--Code/Blocks/syntax/tests/webrick.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/Code/Blocks/syntax/tests/webrick.rb b/Code/Blocks/syntax/tests/webrick.rb
deleted file mode 100644
index 0b3c93c..0000000
--- a/Code/Blocks/syntax/tests/webrick.rb
+++ /dev/null
@@ -1,11 +0,0 @@
1require 'webrick'
2include WEBrick
3
4s = HTTPServer.new(
5 :Port => 2010,
6 :DocumentRoot => Dir::pwd
7)
8s.mount('/sh/scripts', WEBrick::HTTPServlet::FileHandler, '../scripts')
9s.mount('/sh/styles', WEBrick::HTTPServlet::FileHandler, '../styles')
10trap('INT') { s.stop }
11s.start
Powered by cgit v1.2.3 (git 2.41.0)