aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/alternate_helpers/foo_helper.rb
diff options
context:
space:
mode:
authorSam Pohlenz <sam@sampohlenz.com>2008-11-20 14:05:20 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-11-23 13:42:53 +0100
commit5ea9f2cac6e136e27d7fef2662412dda25391860 (patch)
treeee393f92f694e9c5c239b6195e37a807b4ed6fb8 /actionpack/test/fixtures/alternate_helpers/foo_helper.rb
parent9e08a3bb1d47f79b6953056e72eee58e86d83ead (diff)
downloadrails-5ea9f2cac6e136e27d7fef2662412dda25391860.tar.gz
rails-5ea9f2cac6e136e27d7fef2662412dda25391860.tar.bz2
rails-5ea9f2cac6e136e27d7fef2662412dda25391860.zip
Allow helpers directory to be overridden via ActionController::Base.helpers_dir (Sam Pohlenz) [#1424 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'actionpack/test/fixtures/alternate_helpers/foo_helper.rb')
-rw-r--r--actionpack/test/fixtures/alternate_helpers/foo_helper.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/alternate_helpers/foo_helper.rb b/actionpack/test/fixtures/alternate_helpers/foo_helper.rb
new file mode 100644
index 0000000000..a956fce6fa
--- /dev/null
+++ b/actionpack/test/fixtures/alternate_helpers/foo_helper.rb
@@ -0,0 +1,3 @@
+module FooHelper
+ def baz() end
+end