Home
Softono
twitter-bootstrap-rails

twitter-bootstrap-rails

Open source Ruby
4.5K
Stars
980
Forks
0
Issues
179
Watchers
3 months
Last Commit

About twitter-bootstrap-rails

# twitter-bootstrap-rails [![Gem Version](https://badge.fury.io/rb/twitter-bootstrap-rails.svg)](http://badge.fury.io/rb/twitter-bootstrap-rails) [![GitHub stars](https://img.shields.io/github/stars/seyhunak/twitter-bootstrap-rails.svg)](https://github.com/seyhunak/twitter-bootstrap-rails/stargazers) [![GitHub forks](https://img.shields.io/github/forks/seyhunak/twitter-bootstrap-rails.svg)](https://github.com/seyhunak/twitter-bootstrap-rails/network) [![GitHub issues](https://img.shields.io/github/issues/seyhunak/twitter-bootstrap-rails.svg)](https://github.com/seyhunak/twitter-bootstrap-rails/issues) Integrates Bootstrap 5 into Rails Asset Pipeline. Supports Rails 8, 7, 6, 5. ## Install ```ruby # Gemfile gem "twitter-bootstrap-rails" ``` ```bash bundle install rails generate bootstrap:install static ``` ## Generators ```bash # Install Bootstrap assets rails g bootstrap:install static # Generate Bootstrap layout rails g bootstrap:layout application # Generate themed views for scaffold rails g scaffol ...

Platforms

Web Self-hosted

Languages

Ruby

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