From 1ef34115ea7aee67463a906ba371e3b2ce1902cd Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Thu, 28 Sep 2017 16:06:41 +1000 Subject: [PATCH] Update README.md advising use of jquery-rails Users running Rails 5.1+ are required to also add jquery-rails to their Gemfile otherwise missing jquery dependency occurs. The other Bootstrap 4 version already includes this instruction in its readme file [here on line 47](https://github.com/twbs/bootstrap-rubygem/blob/master/README.md) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 685a7da56a..f54f5edb22 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,17 @@ Then, remove all the `*= require_self` and `*= require_tree .` statements from t Do not use `*= require` in Sass or your other stylesheets will not be [able to access][antirequire] the Bootstrap mixins or variables. +Bootstrap JavaScript depends on jQuery. +If you're using Rails 5.1+, add the `jquery-rails` gem to your Gemfile: + +```ruby +gem 'jquery-rails' +``` + +```console +$ bundle install +``` + Require Bootstrap Javascripts in `app/assets/javascripts/application.js`: ```js