Skip to main content

All Questions

0 votes
1 answer
453 views

Acts as paranoid gem interferes with acts as list

I use both acts_as_paranoid and acts_as_list for the same model, CheckIn. I have the gem setup as follows: class CheckIn < ActiveRecord::Base acts_as_paranoid belongs_to :client ...
Jeremy Thomas's user avatar
0 votes
1 answer
463 views

acts_as_list with paranoia gem

I have two models. The first ModelA is the parent of ModelB. ie ModelA has_many ModelB. [When modelA is destroyed, all its dependent ModelB's also gets destroyed due to dependent destroy Now I have ...
Adil Hussain's user avatar