require "pint/version" require "pint/array" module Pint class Application def call(env) `echo debug > debug.txt` [ 200, { 'Content-Type' => 'text/html' }, [ "Hello from Ruby Drunk on Pint!" ]] end end end