Skip to content

Instantly share code, notes, and snippets.

@chatman-media
Created May 10, 2014 19:31
Show Gist options
  • Select an option

  • Save chatman-media/d4301327458a9e31d8a7 to your computer and use it in GitHub Desktop.

Select an option

Save chatman-media/d4301327458a9e31d8a7 to your computer and use it in GitHub Desktop.
Torqbox test app
class HelloWorld
def call(env)
[
200,
{ 'Content-Type' => 'text/plain' },
["Hello World!"]
]
end
end
run HelloWorld.new
source 'https://rubygems.org'
gem 'torqbox'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment