Added Ruby packaging support.

This commit is contained in:
Andrei Belov
2018-04-02 15:48:33 +03:00
parent 2028f3a04b
commit aa8f2c3295
11 changed files with 187 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
app = Proc.new do |env|
['200', {
'Content-Type' => 'text/plain',
}, ["Hello from Unit running with Ruby #{RUBY_VERSION}!\n\n"]]
end
run app