aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/app/controllers/home_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/guides/code/getting_started/app/controllers/home_controller.rb')
-rw-r--r--railties/guides/code/getting_started/app/controllers/home_controller.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/guides/code/getting_started/app/controllers/home_controller.rb b/railties/guides/code/getting_started/app/controllers/home_controller.rb
new file mode 100644
index 0000000000..6cc31c1ca3
--- /dev/null
+++ b/railties/guides/code/getting_started/app/controllers/home_controller.rb
@@ -0,0 +1,5 @@
+class HomeController < ApplicationController
+ def index
+ end
+
+end