Class: Benchmarks::Benchmarker

Inherits:
Object
  • Object
show all
Defined in:
lib/perete.rb

Instance Method Summary collapse

Instance Method Details

#executeObject



44
45
46
47
48
49
50
51
# File 'lib/perete.rb', line 44

def execute
  setup

  # puts "execute"
  execute_internal

  teardown
end

#execute_internalObject



53
54
# File 'lib/perete.rb', line 53

def execute_internal
end

#setupObject



36
37
38
# File 'lib/perete.rb', line 36

def setup
  # puts "setup"
end

#teardownObject



40
41
42
# File 'lib/perete.rb', line 40

def teardown
  # puts "teardown"
end