module Neolytics

Constants

VERSION

Public Class Methods

record_execution(neo4j_session) { || ... } click to toggle source
# File lib/neolytics.rb, line 6
def record_execution(neo4j_session)
  recorder = Recorder.new(neo4j_session)

  recorder.record do
    yield
  end
end