Incorporating a template into my Rails Application has proved to be challenging. I want to use the template "material" without altering its structure. All of the template files are located in my vendor/assets folder, creating this hierarchy: railsApp/vendor/assets/material/material Within the final "material" folder, there are subfolders for JS and CSS files. To simplify including these files, I've created a material.js file with the necessary includes: //= require material/js/jquery-2.1.1 //= require material/js/functions //= require material/js/bootstrap This setup allows me to easily utilize the desired JavaScript resources. The issue arises when attempting to reference material.js from my application.html.erb file. <%= javascript_include_tag '/vendor/assets/material/material/material', 'data-turbolinks-track' => true %> Unfortunately, this method is not working as intended. Any suggestions or advice would be greatly appreciated. Thank you.