No release in over 3 years
Low commit activity in last 3 years
twitter-bootstrap-rails project integrates Bootstrap CSS toolkit for Rails 3.1 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

Development

>= 0
>= 0
>= 0
= 0.11.1

Runtime

>= 0
>= 3.1
>= 3.1
 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