aboutsummaryrefslogtreecommitdiffstats
path: root/railties/helpers
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-06-16 09:39:36 +0200
committerJosé Valim <jose.valim@gmail.com>2009-06-19 16:10:42 +0200
commit42e51ea9c03cdd4833585239c239c420cf808758 (patch)
treee6df4ea7cd345317465e070a13e1ea21be65618c /railties/helpers
parent489f42215223bda3a0a2d8f9b740007a6ee3fc54 (diff)
downloadrails-42e51ea9c03cdd4833585239c239c420cf808758.tar.gz
rails-42e51ea9c03cdd4833585239c239c420cf808758.tar.bz2
rails-42e51ea9c03cdd4833585239c239c420cf808758.zip
More tasks into app generator.
Diffstat (limited to 'railties/helpers')
-rw-r--r--railties/helpers/application_controller.rb10
-rw-r--r--railties/helpers/application_helper.rb3
2 files changed, 0 insertions, 13 deletions
diff --git a/railties/helpers/application_controller.rb b/railties/helpers/application_controller.rb
deleted file mode 100644
index 6635a3f487..0000000000
--- a/railties/helpers/application_controller.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# Filters added to this controller apply to all controllers in the application.
-# Likewise, all the methods added will be available for all controllers.
-
-class ApplicationController < ActionController::Base
- helper :all # include all helpers, all the time
- protect_from_forgery # See ActionController::RequestForgeryProtection for details
-
- # Scrub sensitive parameters from your log
- # filter_parameter_logging :password
-end
diff --git a/railties/helpers/application_helper.rb b/railties/helpers/application_helper.rb
deleted file mode 100644
index 22a7940eb2..0000000000
--- a/railties/helpers/application_helper.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-# Methods added to this helper will be available to all templates in the application.
-module ApplicationHelper
-end