Phase 3 - Add Bootstrap - Issue #3
"Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development."
Bootstrap is a framework that makes it easy for a developer to create a nice design for a website or web application. There are predefined css classes for creating common components such as widgets, typography elements, lists, forms, and more. The framework also provides Javascript which makes it easy to create things like modals, popovers, scrollspies, accordions, and more. Their documentation is very thorough, providing example code for most, if not all of the components that Bootstrap provides. ~ Go Tea Leaf
Some possibly helpful Links:
- https://rubygems.org/gems/sass/versions/3.4.14
- https://rubygems.org/gems/bootstrap-sass/versions/3.3.4.1
- https://github.com/twbs/bootstrap-sass
- https://www.youtube.com/watch?v=4zMgLzfprqo
- http://www.gotealeaf.com/blog/integrating-rails-and-bootstrap-part-1
- http://leveluptuts.com/tutorials/sass-tutorials
- https://github.com/twbs/bootstrap-sass
bootstrap-sass is easy to drop into Rails with the asset pipeline.
In your Gemfile you need to add the bootstrap-sass gem, and ensure that the sass-rails gem is present - it is added to new Rails applications by default.
gem 'bootstrap-sass', '~> 3.3.4'
gem 'sass-rails', '>= 3.2'
bundle install and restart your server to make the files available through the pipeline.
Import Bootstrap styles in app/assets/stylesheets/application.scss:
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";
app/assets/javascripts/application.js
//=
Phase - ? - Install Rspec & Cucumber - Issue #4
https://rubygems.org/gems/rspec-rails/versions/3.2.1
Some possibly helpful Links:
- https://rubygems.org/gems/bootstrap-sass/versions/3.3.4.1
- https://rubygems.org/gems/sass-rails/versions/5.0.3
- http://everydayrails.com/2012/03/12/testing-series-rspec-setup.html
- http://rspec.info/
- http://www.webascender.com/Blog/ID/566/Testing-Rails-4-Apps-With-RSpec-3-Part-I#.VWekwnUViko
- https://relishapp.com/rspec/rspec-rails/docs/gettingstarted