Method: ActiveSupport::ExecutionWrapper.perform

Defined in:
activesupport/lib/active_support/execution_wrapper.rb

.performObject

:nodoc:



100
101
102
103
104
105
106
107
108
# File 'activesupport/lib/active_support/execution_wrapper.rb', line 100

def self.perform # :nodoc:
  instance = new
  instance.run
  begin
    yield
  ensure
    instance.complete
  end
end