From 2ac8c347109d2a1ad75035aa8b35e789fcac090c Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Mon, 15 Jul 2024 01:45:52 +1200 Subject: [PATCH] Add missing requires. --- lib/lively/assets.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/lively/assets.rb b/lib/lively/assets.rb index f990d80..666bbf9 100644 --- a/lib/lively/assets.rb +++ b/lib/lively/assets.rb @@ -3,6 +3,9 @@ # Released under the MIT License. # Copyright, 2021-2024, by Samuel Williams. +require 'protocol/http/middleware' +require 'protocol/http/body/file' + module Lively class Assets < Protocol::HTTP::Middleware DEFAULT_CACHE_CONTROL = 'no-store, no-cache, must-revalidate, max-age=0'