Methods
A
Instance Public methods
around_create(model)
# File activemodel/test/cases/callbacks_test.rb, line 6
def around_create(model)
  model.callbacks << :before_around_create
  yield
  model.callbacks << :after_around_create
end