1
0
Fork 0

Add home controller to serve as web root

This commit is contained in:
Andrew Tomaka 2013-04-06 01:31:41 -04:00
parent 2410686525
commit 6f3f0f88a4
8 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/

View File

@ -0,0 +1,3 @@
// Place all the styles related to the home controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/

View File

@ -0,0 +1,4 @@
class HomeController < ApplicationController
def index
end
end

View File

@ -0,0 +1,2 @@
module HomeHelper
end

View File

@ -0,0 +1,2 @@
<h1>Home#index</h1>
<p>Find me in app/views/home/index.html.erb</p>

View File

@ -1,8 +1,12 @@
MsuCourseAlerter::Application.routes.draw do
get "home/index"
devise_for :users
resources :alerts
root :to => "home#index"
# The priority is based upon order of creation:
# first created -> highest priority.

View File

@ -0,0 +1,9 @@
require 'test_helper'
class HomeControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
end

View File

@ -0,0 +1,4 @@
require 'test_helper'
class HomeHelperTest < ActionView::TestCase
end