aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/controllers/welcome_controller.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-06-02 21:38:32 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-06-02 21:38:32 +0530
commit983687a9e55915c22b84b60b45ca2b40794cf9a2 (patch)
treee498da37e508e75ea0ddb6b62115a7f4cd2d0df4 /guides/code/getting_started/app/controllers/welcome_controller.rb
parentfaf550c1916550d62e64366d04a5222a5751d05b (diff)
downloadrails-983687a9e55915c22b84b60b45ca2b40794cf9a2.tar.gz
rails-983687a9e55915c22b84b60b45ca2b40794cf9a2.tar.bz2
rails-983687a9e55915c22b84b60b45ca2b40794cf9a2.zip
fix up the example app for getting started guide [ci skip]
Diffstat (limited to 'guides/code/getting_started/app/controllers/welcome_controller.rb')
-rw-r--r--guides/code/getting_started/app/controllers/welcome_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/code/getting_started/app/controllers/welcome_controller.rb b/guides/code/getting_started/app/controllers/welcome_controller.rb
new file mode 100644
index 0000000000..f9b859b9c9
--- /dev/null
+++ b/guides/code/getting_started/app/controllers/welcome_controller.rb
@@ -0,0 +1,4 @@
+class WelcomeController < ApplicationController
+ def index
+ end
+end