From 983687a9e55915c22b84b60b45ca2b40794cf9a2 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sat, 2 Jun 2012 21:38:32 +0530 Subject: fix up the example app for getting started guide [ci skip] --- guides/code/getting_started/app/controllers/home_controller.rb | 5 ----- guides/code/getting_started/app/controllers/welcome_controller.rb | 4 ++++ 2 files changed, 4 insertions(+), 5 deletions(-) delete mode 100644 guides/code/getting_started/app/controllers/home_controller.rb create mode 100644 guides/code/getting_started/app/controllers/welcome_controller.rb (limited to 'guides/code/getting_started/app/controllers') diff --git a/guides/code/getting_started/app/controllers/home_controller.rb b/guides/code/getting_started/app/controllers/home_controller.rb deleted file mode 100644 index 6cc31c1ca3..0000000000 --- a/guides/code/getting_started/app/controllers/home_controller.rb +++ /dev/null @@ -1,5 +0,0 @@ -class HomeController < ApplicationController - def index - end - -end 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 -- cgit v1.2.3