module Bullet

def profile

def profile
  Bullet.start_request if Bullet.enable?
  yield
  if Bullet.enable? && Bullet.notification?
    Bullet.perform_out_of_channel_notifications
  end
  Bullet.end_request if Bullet.enable?
end