Created
August 25, 2012 13:35
-
-
Save avit/3465738 to your computer and use it in GitHub Desktop.
inheritable_copy error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyMailer < ActionMailer::Base | |
def notice(user) | |
# ... | |
mail(to: @to, from: @from, subject: @subject) do |format| | |
format.html { render text: @html_content } | |
format.text { render text: @text_content } | |
end | |
end | |
end | |
# WARN: undefined method `inheritable_copy' for #<Rails::Application::Configuration:0xb134c90> | |
# traced to: | |
# https://github.com/rails/rails/blob/3-2-stable/actionpack/lib/action_view/helpers/controller_helper.rb#L16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment