lib/pint.rb in pint-0.0.1 vs lib/pint.rb in pint-0.0.1.1

- old
+ new

@@ -1,5 +1,10 @@ require "pint/version" module Pint - # Your code goes here... + class Application + def call(env) + [ 200, { 'Content-Type' => 'text/html' }, + [ "Hello from Ruby Drunk on Pints!" ]] + end + end end