Skip to content

Instantly share code, notes, and snippets.

@lfv89
Created October 13, 2018 23:42
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/0858e763408e068c3d5a3e01533306e9 to your computer and use it in GitHub Desktop.
Save lfv89/0858e763408e068c3d5a3e01533306e9 to your computer and use it in GitHub Desktop.
hello world with webrick on rack
require 'bundler/inline'
gemfile do
source 'https://rubygems.org'
gem 'rack'
end
class WebrickRackApp
def call(env)
['200', {'Content-Type' => 'text/html'}, ['Hello, World!']]
end
end
Rack::Handler::WEBrick.run(WebrickRackApp.new, Port: 3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment