module Roda::RodaPlugins::ExceptionPage::RequestMethods
def exception_page_assets
def exception_page_assets get 'exception_page.css' do response['Content-Type'] = "text/css" scope.exception_page_css end get 'exception_page.js' do response['Content-Type'] = "application/javascript" scope.exception_page_js end end