方法
包含的模块
属性
[R] | responses |
类公共方法
new(context, &block) 链接
源代码:显示 | 在 GitHub 上
# File actionmailer/lib/action_mailer/collector.rb, line 12 def initialize(context, &block) @context = context @responses = [] @default_render = block end
实例公共方法
any(*args, &block) 链接
也称为:all
源代码:显示 | 在 GitHub 上
# File actionmailer/lib/action_mailer/collector.rb, line 18 def any(*args, &block) options = args.extract_options! raise ArgumentError, "You have to supply at least one format" if args.empty? args.each { |type| send(type, options.dup, &block) } end
custom(mime, options = {}) 链接
源代码:显示 | 在 GitHub 上
# File actionmailer/lib/action_mailer/collector.rb, line 25 def custom(mime, options = {}) options.reverse_merge!(content_type: mime.to_s) @context.formats = [mime.to_sym] options[:body] = block_given? ? yield : @default_render.call @responses << options end