Skip to content

Instantly share code, notes, and snippets.

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