This works, but it was a stab in the dark. I know little Ruby.
What's the accepted way to serve a plain old file for a given resource?
get '/xyz' do
File.read 'abc.html'
end
|
|
|
you can use
|
|||
|
|
|
Serve it out of the ./public directory. See the Static Files section of the README and the :static and :public configuration options. |
|||||||||
|