Guest User

Untitled

a guest
Jun 13th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def ActionMailerMailer::Base.debug!
  2. Net::SMTP.module_eval do
  3. alias_method '__initialize__', 'initialize'
  4.  
  5. def initialize(*args, &block)
  6. __initialize__(*args, &block)
  7. ensure
  8. @debug_output = STDERR
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment