~/

rails3_acts_as_paranoid is no longer rails3_acts_as_paranoid, it becomes acts_as_paranoid again!

I'm using rails3_acts_as_paranoid with current project.

gem 'rails3_acts_as_paranoid'

I couldn't update to rails4.0.0.beta1 because of the problem of dependency, so I checked repo of rails3_acts_as_paranoid. then I found this PR, I asked repo owner about backward compatibility, and learned 2 things.

  1. rails3_acts_as_paranoid is no longer rails3_acts_as_paranoid, it becomes acts_as_paranoid.
  2. rails3_acts_as_paranoid (acts_as_paranoid) doesn't support all version of rails. we have to specify the tag acording to version of rails. see: https://github.com/byroot/rails3_acts_as_paranoid#support

If we use rails3_acts_as_paranoid with rails 3.2.*, the Gemfile should be:

gem "acts_as_paranoid", "~>0.4.0"