创建项目
rails new BootstrapProject
创建模型
rails g scaffold xxx --skip-stylesheets
运行迁移
rake db:migrate
--------- 如果项目和模型都已经建立好了并已经运行了迁移,那么可以省略以上步骤,直接进入下面的流程 ---------
在 Gemfile 中添加 bootstrap,这里使用 twitter-bootstrap-rails
gem 'twitter-bootstrap-rails'
gem 'therubyracer'
gem 'less-rails'
bundle
bundle install
安装 bootstrap
rails g bootstrap:install
在模型上运用 bootstrap
rails g bootstrap:themed xxx -f
注:xxx 可以是任意的模型,例如模型名称是 Article,那么这里的语句就是:
rails g bootstrap:themed Articles
还要在 application.js 中加上引用,否则 bootstrap 的一些按钮会失效:
//= require jquery
//= require twitter/bootstrap
Enjoy it~