about summary refs log tree commit homepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/simpletest.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/simpletest.rb b/examples/simpletest.rb
index 864c226..532e289 100644
--- a/examples/simpletest.rb
+++ b/examples/simpletest.rb
@@ -12,5 +12,6 @@ end
 
 h = Mongrel::HttpServer.new("0.0.0.0", "3000")
 h.register("/test", SimpleHandler.new)
+h.register("/files", Mongrel::DirHandler.new("."))
 h.run.join