Low commit activity in last 3 years
A long-lived project that still receives updates
twitter-bootstrap-rails project integrates Bootstrap 5 CSS toolkit for Rails 8, 7, 6, 5 (also supports) Asset Pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 5.0, < 9.0
~> 2.7
>= 5.0, < 9.0
 Project Readme

twitter-bootstrap-rails

Gem Version GitHub stars GitHub forks GitHub issues

Integrates Bootstrap 5 into Rails Asset Pipeline. Supports Rails 8, 7, 6, 5.

Install

# Gemfile
gem "twitter-bootstrap-rails"
bundle install
rails generate bootstrap:install static

Generators

# Install Bootstrap assets
rails g bootstrap:install static

# Generate Bootstrap layout
rails g bootstrap:layout application

# Generate themed views for scaffold
rails g scaffold Task title:string done:boolean
rails db:migrate
rails g bootstrap:themed Tasks

Quick Start

rails new myapp
cd myapp
echo 'gem "twitter-bootstrap-rails"' >> Gemfile
bundle install
rails generate bootstrap:install static
rails generate scaffold Task title:string description:text completed:boolean
rails db:migrate
rails generate bootstrap:themed Tasks
rails generate bootstrap:layout application
rails server

License

MIT