durech11 / rails_bootstrap_sass_project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rails Bootstrap App

Book Source: Bootstrap for Rails

Setup

  • Add the bootstrap-sass gem in the gemfile. gem 'bootstrap-sass', '~> 3.3', '>= 3.3.6'. For the latest version, check out rubygems bootstrap sass page
  • Run bundle install
  • Generate scaffold rails g scaffold todos title:string description:text completed:boolean
  • Migrate rails db:migrate
  • Link Bootstrap's css and js files from Rails' default css and js files. Edit app/assets/stylesheets/todos.scss to include bootstrap by adding @import "bootstrap";. Edit app/assets/javascripts/application.js to include bootstrap by adding //= require bootstrap

About


Languages

Language:Ruby 73.5%Language:HTML 17.6%Language:CSS 5.3%Language:JavaScript 3.1%Language:CoffeeScript 0.5%