The default Rails 3.2 application.html.erb is this:
<!DOCTYPE html>
<html>
<head>
<title>Testapp</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
Is there a way to inline the asset pipeline generated CSS and JavaScript here?
PS: No need to lament that inlining could be a bad idea.