twbs/bootstrap-sassではbootstrap3までしか使えない。
bootstrap4を使いたかったら
twbs/bootstrap-rubygem
を使う
###1
gemfileに
gem 'bootstrap', '~> 4.0.0.beta'
gem 'jquery-rails'(rails5の時のみ)
でbundle install
###2
mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
でファイル名を変えて、
###3
# app/assets/stylesheets/application.scss
@import "bootstrap";
と記述。その際 *= require and *= require_treeをすべて削除。
# application.js
//= require jquery3
//= require popper
bootstrap4最高!!!