1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

nodoc ActionMailer module from lib/action_mailer/*.rb

This commit is contained in:
Zachary Scott 2013-05-15 00:38:51 -04:00
parent 98d81def34
commit 328e876a15
9 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@ require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/module/anonymous'
require 'action_mailer/log_subscriber'
module ActionMailer
module ActionMailer # :nodoc:
# Action Mailer allows you to send email from your application using a mailer model and views.
#
# = Mailer Models

View file

@ -2,7 +2,7 @@ require 'abstract_controller/collector'
require 'active_support/core_ext/hash/reverse_merge'
require 'active_support/core_ext/array/extract_options'
module ActionMailer
module ActionMailer # :nodoc:
class Collector # :nodoc: all
include AbstractController::Collector
attr_reader :responses

View file

@ -1,6 +1,6 @@
require 'tmpdir'
module ActionMailer
module ActionMailer # :nodoc:
# This module handles everything related to mail delivery, from registering
# new delivery methods to configuring the mail object to be sent.
module DeliveryMethods

View file

@ -1,4 +1,4 @@
module ActionMailer
module ActionMailer # :nodoc:
# Implements the ActiveSupport::LogSubscriber for logging notifications when
# email is delivered and received.
class LogSubscriber < ActiveSupport::LogSubscriber

View file

@ -1,4 +1,4 @@
module ActionMailer
module ActionMailer # :nodoc:
# Provides helper methods for ActionMailer::Base that can be used for easily
# formatting messages, accessing mailer or message instances, and the
# attachments list.

View file

@ -2,7 +2,7 @@ require "action_mailer"
require "rails"
require "abstract_controller/railties/routes_helpers"
module ActionMailer
module ActionMailer # :nodoc:
class Railtie < Rails::Railtie # :nodoc:
config.action_mailer = ActiveSupport::OrderedOptions.new
config.eager_load_namespaces << ActionMailer

View file

@ -1,6 +1,6 @@
require 'active_support/test_case'
module ActionMailer
module ActionMailer # :nodoc:
class NonInferrableMailerError < ::StandardError
def initialize(name)
super "Unable to determine the mailer to test from #{name}. " +

View file

@ -1,4 +1,4 @@
module ActionMailer
module ActionMailer # :nodoc:
module TestHelper
# Asserts that the number of emails sent matches the given number.
#

View file

@ -1,4 +1,4 @@
module ActionMailer
module ActionMailer # :nodoc:
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta"