Skip to content

Instantly share code, notes, and snippets.

@lfv89
Created October 13, 2018 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lfv89/aea36781318414f9a0555c9effd490b7 to your computer and use it in GitHub Desktop.
Save lfv89/aea36781318414f9a0555c9effd490b7 to your computer and use it in GitHub Desktop.
hello world with mongrel on rack
require 'bundler/inline'
gemfile do
source 'https://rubygems.org'
gem 'rack', '1.6.10'
gem 'mongrel', '1.2.0.pre2'
end
class MongrelRackApp
def call(env)
['200', {'Content-Type' => 'text/html'}, ['Hello, World!']]
end
end
Rack::Handler::Mongrel.run(MongrelRackApp.new, Port: 3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment