Slide 18
Slide 18 text
require 'erb'
class MyRackApp
def initialize
@april_fools = Time.now.strftime('%m%d') == '0401'
end
def call(_env)
['200', {'Content-Type' => 'text/html'}, view]
end
def view
[ERB.new(template).result(binding)]
end
def template
File.open('index.html.erb', 'r').read
end
end