winton / acts_as_archive

Don't delete your records, move them to a different table
MIT License
372 stars 87 forks source link

acts_as_archive fails silently #31

Open christianhellsten opened 13 years ago

christianhellsten commented 13 years ago

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.

elmatou commented 13 years ago

Same as issues #21 & #28