###Auto-Matching### Inside a given controller, each action will by default render a template with the same name as the action
class BooksController < ApplicationController
def index
#will automatically render app/views/books/index.html.erb
end