I am new to rails and I'm trying to create a new project and add the bootstrap 3 ruby Gem (https://rubygems.org/gems/bootstrap-sass) and I can't work out what I'm doing wrong.
I create the new application:
rails new demoapp
I add the following line to the Gemfile
gem 'bootstrap-sass', '~> 3.1.1'
I bundle it
bundle install
I run it
rails server
However no bootstrap is present on my site and I can't use bootstrap css, what am I doing wrong?