Ruby on Rails Tutorial: sample application

This is the sample application for the Ruby on Rails Tutorial: Learn Web Development with Rails by Michael Hartl.

  • variable title
  • named route

####notes

rails server -b $IP -p $PORT 
bundle exec guard
<% content_for(:title, "Home") %>
<%= content_for(:title) %>

<% provide(:title, "Home") %>
<%= yield(:title) %>
gem 'bootstrap-sass',       '3.2.0.1'
@import "bootstrap-sprockets";
@import "bootstrap";