Skip to content

v0.5.0

Latest
Compare
Choose a tag to compare
@jwoertink jwoertink released this 13 Oct 21:52
c8c83bc
  • UI fix with long filenames
  • Decouple from HTTP::Server::Context

Notes

There is a breaking change, and for_runtime_exception no longer exists. Replace the call to this with instantiating the exception page.

- context.response.print MyApp::ExceptionPage.for_runtime_exception(context, e).to_s
+ context.response.print MyApp::ExceptionPage.new(context, e)

See the PR for more details: #49