You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require 'watts'
class Simple < Watts::App
class EZResource < Watts::Resource
get {
response.headers['Content-Type'] ="text/html;charset=utf-8"
#"Hello, World!\n"
ERB.new(File.read("view/test.erb")).result
}
end
resource('/', EZResource)
end
curl http://localhost:9292/
HTTP/1.1 200 OK
Content-Type: text/plain
Content-Length: 14