Installed Devise and created a home controller/route

This commit is contained in:
2012-09-02 02:57:34 -07:00
parent 6df97cc3a7
commit 62fb513491
15 changed files with 337 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
class HomeController < ApplicationController
def index
respond_to do |format|
format.html # index.html.erb
end
end
end