diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-24 20:31:34 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-24 20:31:34 +0000 |
commit | f95dfff966696cba237723e4abfefd3ae8ca91cb (patch) | |
tree | 8bfb23afa40836bfd1526b725cd54b058169452a /actionpack/test/fixtures/helpers | |
parent | 351eea1fcd9619472165859534f655870518023d (diff) | |
download | rails-f95dfff966696cba237723e4abfefd3ae8ca91cb.tar.gz rails-f95dfff966696cba237723e4abfefd3ae8ca91cb.tar.bz2 rails-f95dfff966696cba237723e4abfefd3ae8ca91cb.zip |
Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6221 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/fixtures/helpers')
-rw-r--r-- | actionpack/test/fixtures/helpers/fun/pdf_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/fixtures/helpers/fun/pdf_helper.rb b/actionpack/test/fixtures/helpers/fun/pdf_helper.rb index 1890f6c9ec..c4aea5a3f3 100644 --- a/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +++ b/actionpack/test/fixtures/helpers/fun/pdf_helper.rb @@ -1,3 +1,3 @@ -module Fun::PDFHelper +module Fun::PdfHelper def foobar() 'baz' end end |