I have a simple sinatra application. All I want to do is use it as a wrapper to serve a static HTML file at a specific route. My directory structure looks like this:
Does send_file do what you want?
e.g.
get '/myspecialroute' do send_file 'special.html' end