Sometimes in heavy client side Javascript we put the tags at the end of the HTML file so that the content is displayed first while Javascript is loaded afterwards.
Is it possible to do this using Rails 3.1 assets pipeline?
EDIT:
<html>
<head>
<%= javascript_include_tag "application" %>
</head>
<body>
<!-- all the page content goes here -->
<!-- we include these at the bottom to ensure the html loads first and the javascript is loaded afterwards. How can we achieve this through rails asset pipelining? -->
<script src="/some_other_assets/first_file.js"></script>
<script src="/some_other_assets/second_file.js"></script>
<script src="/some_other_assets/third_file.js"></script>
</body>
</html>