Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question

2 Answers

up vote 8 down vote accepted

you can use set :public to specify the directory for your static files. Then, you can serve the file using send_file() for example:

    get '/static_file' do
      send_file('my_static_file')
   end 
share|improve this answer

Serve it out of the ./public directory. See the Static Files section of the README and the :static and :public configuration options.

share|improve this answer
How would it know to map /xyz to abc.html with :static? Is File.read the right way to output a named file? – al7ut9ov8my4wopt5ur6ais5 Feb 4 '10 at 22:17
Ahh, I misunderstood. If you configure a :public and want abc.html than point at webserver/abc.html and sinatra won't route it'll just serve the html. If you want to custom route and serve a static file, I think nstehr has got it. Of course you could also just name your abc.html to xyz (or symlin) in your public directory, but I still think I like nstehr's way. – Mark Feb 4 '10 at 23:09
1  
I learned something anyway :) – al7ut9ov8my4wopt5ur6ais5 Feb 4 '10 at 23:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.