I would like to skip/disable ActiveRecord
callbacks in, specifically, Rails 3. The following is an example solution I thought of -- creating an attribute that is defined to create the object without callbacks.
product = Product.new(title: 'Smth')
product.send(:create_without_callbacks)
The above example is similar to that in this answer, but the author said it is for specifically Rails 2. Is there a similar, or even better, way to do this for Rails 3?