GitXplorerGitXplorer
t

bootstrap-rubygem

public
2015 stars
451 forks
45 issues

Commits

List of commits on branch main.
Unverified
1e6b6b24afe23fe93042a413b4e9cf8dbc1f0a3e

Fix rails test

nntkme committed 18 days ago
Unverified
ce9dfc26312eb0034a3d637b3fa9f16cd3dbb029

Fix outdated gem count in README.

nnirvdrum committed 18 days ago
Unverified
f1f92e0cb077d9bbfe0986fd1184a0560d022aa0

Make autoprefixer dependency optional

gglebm committed 4 months ago
Unverified
f240cae79fb1dcb55abcb4fc9710544134ef8ec2

Fix Rails 4.2 test

gglebm committed 5 months ago
Unverified
81b20a8d129cf1f26bcbb4b097148dfbb01b3c75

Increase test timeout

gglebm committed 5 months ago
Unverified
1842cdcb6201aea0204a66c9a13543649533242c

Update changelog and README for v5.3.3

gglebm committed 5 months ago

README

The README file for this repository.

Bootstrap Ruby Gem CI Gem

Bootstrap 5 ruby gem for Ruby on Rails (Sprockets/Importmaps) and Hanami (formerly Lotus).

For Sass versions of Bootstrap 3 and 2 see bootstrap-sass instead.

Ruby on Rails Note: Newer releases of Rails have added additional ways for assets to be processed. The twbs/bootstrap-rubygem is for use with Importmaps or Sprockets, but not Webpack.

Installation

Please see the appropriate guide for your environment of choice:

a. Ruby on Rails

Add bootstrap to your Gemfile:

gem 'bootstrap', '~> 5.3.3'

This gem requires a Sass engine, so make sure you have one of these gems in your Gemfile:

Also ensure that sprockets-rails is at least v2.3.2.

For wider browser compatibility, use Autoprefixer. If you are using Rails, add the autoprefixer-rails gem to your app and ensure you have a JavaScript runtime (e.g. NodeJS).

bundle install and restart your server to make the files available through the pipeline.

Import Bootstrap styles in app/assets/stylesheets/application.scss:

// Custom bootstrap variables must be set or imported *before* bootstrap.
@import "bootstrap";

The available variables can be found here.

Make sure the file has .scss extension (or .sass for Sass syntax). If you have just generated a new Rails app, it may come with a .css file instead. If this file exists, it will be served instead of Sass, so rename it:

$ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss

Then, remove all the *= require and *= require_tree statements from the Sass file. Instead, use @import to import Sass files.

Do not use *= require in Sass or your other stylesheets will not be able to access the Bootstrap mixins and variables.

Bootstrap JavaScript can optionally use jQuery. If you're using Rails 5.1+, you can add the jquery-rails gem to your Gemfile:

gem 'jquery-rails'

Bootstrap tooltips and popovers depend on popper.js for positioning. The bootstrap gem already depends on the popper_js gem.

Importmaps

You can pin either bootstrap.js or bootstrap.min.js in config/importmap.rb as well as popper.js:

pin "bootstrap", to: "bootstrap.min.js", preload: true
pin "@popperjs/core", to: "popper.js", preload: true

Whichever files you pin will need to be added to config.assets.precompile:

# config/initializers/assets.rb
Rails.application.config.assets.precompile += %w(bootstrap.min.js popper.js)

Sprockets

Add Bootstrap dependencies and Bootstrap to your application.js:

//= require jquery3
//= require popper
//= require bootstrap-sprockets

While bootstrap-sprockets provides individual Bootstrap components for ease of debugging, you may alternatively require the concatenated bootstrap for faster compilation:

//= require jquery3
//= require popper
//= require bootstrap

b. Other Ruby frameworks

If your framework uses Sprockets or Hanami, the assets will be registered with Sprockets when the gem is required, and you can use them as per the Rails section of the guide.

Otherwise you may need to register the assets manually. Refer to your framework's documentation on the subject.

Configuration

Sass: Individual components

By default all of Bootstrap is imported.

You can also import components explicitly. To start with a full list of modules copy _bootstrap.scss file into your assets as _bootstrap-custom.scss. Then comment out components you do not want from _bootstrap-custom. In the application Sass file, replace @import 'bootstrap' with:

@import 'bootstrap-custom';