aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/welcome_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/welcome_controller.rb')
-rw-r--r--railties/lib/rails/welcome_controller.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/lib/rails/welcome_controller.rb b/railties/lib/rails/welcome_controller.rb
new file mode 100644
index 0000000000..de9cd18b01
--- /dev/null
+++ b/railties/lib/rails/welcome_controller.rb
@@ -0,0 +1,8 @@
+require 'rails/application_controller'
+
+class Rails::WelcomeController < Rails::ApplicationController # :nodoc:
+ layout false
+
+ def index
+ end
+end