You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 49 in acts_as_archive.rb swallows exceptions:
I noticed this when I had problems getting my models to work with acts_as_archive. I found out the models failed to load because the models where using code/plugins that had not yet been loaded when the acts_as_archive initializer was triggered. Line 49 made it difficult to find the problem.
My solution was to move this line all the way to the bottom of Gemfile:
I suggest that "rescue nil" is removed. I can provide a patch if required.
The text was updated successfully, but these errors were encountered:
Line 49 in acts_as_archive.rb swallows exceptions:
I noticed this when I had problems getting my models to work with acts_as_archive. I found out the models failed to load because the models where using code/plugins that had not yet been loaded when the acts_as_archive initializer was triggered. Line 49 made it difficult to find the problem.
My solution was to move this line all the way to the bottom of Gemfile:
I suggest that "rescue nil" is removed. I can provide a patch if required.
The text was updated successfully, but these errors were encountered: