1 2 3 4 5 6 7 8 9 10
#!/usr/bin/env ruby require 'sinatra' set :bind, '0.0.0.0' set :port, 80 get '/' do 'Put this in your pipe & smoke it!' end