Rails 專案設定 bootstrap 與 simple_form
- gemfile的修改
Use SCSS for stylesheets
gem ‘sass-rails’, ‘~> 4.0.0’ gem ‘bootstrap-sass’
twitter bootstrap
gem “therubyracer” gem “less-rails” gem “twitter-bootstrap-rails”
simple form
gem ‘simple_form’ gem ‘country_select’
-
$ bundle install
-
安装相应文件到assets目录 $ rails g bootstrap:install $ rails generate simple_form:install –bootstrap
-
使用bootstrap样式的simple_form
<div class="span12">
<%= simple_form_for @group do |f| %>
<%= f.input :title, :input_html => { :class => "input-xxlarge"} %>
<%= f.input :description, :input_html => { :class => "input-xxlarge"} %>
<div class="form-actions">
<%= f.submit "Submit", :disable_with => 'Submiting...', :class => "btn btn\
-primary"%> </div>
<% end %> </div>