From c372914af04268126d1e4a11af1c8d9baa014167 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 23 Jan 2015 23:21:18 -0500 Subject: Create an index page * Add `main` action to HomeController * Set `main` as our root route * Create a view for `main` with dummy text --- app/controllers/home_controller.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/controllers') diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index fc0b474..82601c1 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,2 +1,4 @@ class HomeController < ApplicationController + def main + end end -- cgit v1.2.3