summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/index.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/index.cgi b/contrib/index.cgi
index 7a0a57b..cdad2ff 100644
--- a/contrib/index.cgi
+++ b/contrib/index.cgi
@@ -59,7 +59,8 @@ begin
basepath != ENV['SCRIPT_NAME'] or # can't access to index.cgi
raise HttpError.new('403 Forbidden', "#{basepath}: not accessable.")
## process as eRuby file
- eruby = ERUBY.load_file(filepath) # or ERUBY.new(File.read(filepath))
+ #eruby = ERUBY.new(File.read(filepath)) # not create cache file (slower)
+ eruby = ERUBY.load_file(filepath) # create cache file (faster)
html = eruby.result()
## use layout template
if @layout && File.file?(@layout)