在gem内部的模板路径问题

时间:2014-09-25 23:23:53

标签: ruby-on-rails actionmailer

错误讯息:

ActionView::MissingTemplate:
Missing template gem_name/exception_mailer/exception_report with "mailer". 
Searched in:
         * "gem_name/exception_mailer"

这是我的文件夹结构:

lib/
  gem_name/
    exception_mailer.rb  # extends ActionMailer::Base
    exception_mailer/
      exception_report.html.erb
  gem_name.rb

我想不出为什么找不到我的模板。

1 个答案:

答案 0 :(得分:0)

好的,所以我需要修改视图路径数组。

ActionMailer::Base.view_paths = ... 

prepend_view_path('path')

链接: