**Steps to reproduce:** 1. Executing this code which has an error ``` ruby class MailPreview < MailView def invitation this_will_raise_an_error!! account = Account.first inviter, invitee = account.users[0, 2] Notifier.invitation(inviter, invitee) end end ``` 1. Then removing the ``` ruby this_will_raise_an_error!! ``` The error persists until I restart the server **How should it behave?** I shouldn't need to restart the server in order to make the MailPreview execute without the "this_will_raise_an_error!!" line
Steps to reproduce:
this_will_raise_an_error!!The error persists until I restart the server
How should it behave?
I shouldn't need to restart the server in order to make the MailPreview execute without the "this_will_raise_an_error!!" line