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:50:02 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-06-02 21:50:02 +0530
commit40d5303b4f1f32b1f97259052bd200a7e0792c7e (patch)
tree6879c06ca0b513636a8d882159a2da07ea701529 /guides/code/getting_started/app/controllers/welcome_controller.rb
parenta769fe9db16a792164363b49e4c7f07f6e412eaa (diff)
parentab2bf8148c8000a5185b11b6c1b11d94ae33053d (diff)
downloadrails-40d5303b4f1f32b1f97259052bd200a7e0792c7e.tar.gz
rails-40d5303b4f1f32b1f97259052bd200a7e0792c7e.tar.bz2
rails-40d5303b4f1f32b1f97259052bd200a7e0792c7e.zip
Merge branch 'master' of github.com:lifo/docrails
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