This should be pretty easy, but it's simply not working. Running Padrino with sinatra-assetpack. All css files serve perfectly like this:
serve '/stylesheets', from: '/app/stylesheets'
css :shared, [
'/stylesheets/reset.css',
'/stylesheets/runemadsen.css'
]
But when trying to serve .js files, it doesn't work. I get a 404 in the script load:
serve '/javascripts', from: '/app/javascripts'
js :shared, [
'/javascripts/jquery.js'
]
I really don't get it. It's exactly the same code. The files are there. Any tips?
<script src='/javascripts/jquery.js'></script>But the file is not there. – Ronze Dec 10 '11 at 2:50ls -lon the file? – sarnold Dec 11 '11 at 1:18