summaryrefslogtreecommitdiffhomepage
path: root/test/ruby/constants/config.ru
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/constants/config.ru')
-rw-r--r--test/ruby/constants/config.ru15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/ruby/constants/config.ru b/test/ruby/constants/config.ru
new file mode 100644
index 00000000..e0951bf4
--- /dev/null
+++ b/test/ruby/constants/config.ru
@@ -0,0 +1,15 @@
+app = Proc.new do |env|
+ ['200', {
+ 'X-Copyright' => RUBY_COPYRIGHT,
+ 'X-Description' => RUBY_DESCRIPTION,
+ 'X-Engine' => RUBY_ENGINE,
+ 'X-Engine-Version' => RUBY_ENGINE_VERSION,
+ 'X-Patchlevel' => RUBY_PATCHLEVEL.to_s,
+ 'X-Platform' => RUBY_PLATFORM,
+ 'X-Release-Date' => RUBY_RELEASE_DATE,
+ 'X-Revision' => RUBY_REVISION.to_s,
+ 'X-Version' => RUBY_VERSION,
+ }, []]
+end
+
+run app