changelog shortlog tags manifest raw

changeset: add controller home.

changeset 3: 584d445b6069
parent 2:93bc3220fdda
child 4:43c5e6930eee
author: moriq@moriq.com
date: Wed Mar 05 01:14:31 2008 +0900 (16 years ago)
files: app/controllers/home_controller.rb app/helpers/home_helper.rb app/views/home/index.html.erb test/functional/home_controller_test.rb
description: add controller home.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/controllers/home_controller.rb	Wed Mar 05 01:14:31 2008 +0900
@@ -0,0 +1,5 @@
+class HomeController < ApplicationController
+
+  def index
+  end
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/helpers/home_helper.rb	Wed Mar 05 01:14:31 2008 +0900
@@ -0,0 +1,2 @@
+module HomeHelper
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/views/home/index.html.erb	Wed Mar 05 01:14:31 2008 +0900
@@ -0,0 +1,2 @@
+<h1>Home#index</h1>
+<p>Find me in app/views/home/index.html.erb</p>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/functional/home_controller_test.rb	Wed Mar 05 01:14:31 2008 +0900
@@ -0,0 +1,8 @@
+require File.dirname(__FILE__) + '/../test_helper'
+
+class HomeControllerTest < ActionController::TestCase
+  # Replace this with your real tests.
+  def test_truth
+    assert true
+  end
+end