In the head section of my Ruby on Rails app I am only able to see the following CSS and JS file when I view the source code in browser.
<link rel="stylesheet" media="all" href="/stylesheets/default.css" data-turbolinks-track="reload" />
<script src="/javascripts/default.js" data-turbolinks-track="reload">
app/assets/stylesheets
app/assets/javascripts
application.css
application.js
Added <link rel="stylesheet" type="text/css" href="stylesheets/bootstrap.min.css">
to the application.html.erb
file.
Thanks to @Deepak for giving me a lead to find an alternate solution to my problem.