aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/helpers.rb
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-10-16 15:00:27 +0000
committerJamis Buck <jamis@37signals.com>2005-10-16 15:00:27 +0000
commit59f1df1b5b37a9e16a6b03d931c7b620075034d5 (patch)
treed008bf8d519b3e66a5c38569070158775ffccf81 /actionmailer/lib/action_mailer/helpers.rb
parent0453525f8dc67b78a8805ed4b1583c47f723be86 (diff)
downloadrails-59f1df1b5b37a9e16a6b03d931c7b620075034d5.tar.gz
rails-59f1df1b5b37a9e16a6b03d931c7b620075034d5.tar.bz2
rails-59f1df1b5b37a9e16a6b03d931c7b620075034d5.zip
Update/extend ActionMailer documentation (rdoc)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2648 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/lib/action_mailer/helpers.rb')
-rw-r--r--actionmailer/lib/action_mailer/helpers.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/helpers.rb b/actionmailer/lib/action_mailer/helpers.rb
index f482758386..b53326ca72 100644
--- a/actionmailer/lib/action_mailer/helpers.rb
+++ b/actionmailer/lib/action_mailer/helpers.rb
@@ -1,6 +1,6 @@
-module ActionMailer #:nodoc:
+module ActionMailer
module Helpers #:nodoc:
- def self.append_features(base)
+ def self.append_features(base) #:nodoc:
super
# Initialize the base module to aggregate its helpers.
@@ -24,7 +24,7 @@ module ActionMailer #:nodoc:
end
end
- module ClassMethods #:nodoc:
+ module ClassMethods
# Makes all the (instance) methods in the helper module available to templates rendered through this controller.
# See ActionView::Helpers (link:classes/ActionView/Helpers.html) for more about making your own helper modules
# available to the templates.