1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# frozen_string_literal: true
#--
# Copyright (c) 2008 Jeremy Hinegardner
# All rights reserved. See LICENSE and/or COPYING for details.
#++
#
# The top level module containing the contents of the hitimes library
#
# use the library with:
#
# require 'hitimes'
#
module Hitimes
#
# Base class of all errors in Hitimes
#
class Error < ::StandardError; end
# Hitimes.measure { } -> Float
#
# Times the execution of the block, returning the number of seconds it took
def self.measure(&block)
Hitimes::Interval.measure(&block)
end
end
require "hitimes/paths"
require "hitimes/version"
require "hitimes/instant"
require "hitimes/interval"
require "hitimes/stats"
require "hitimes/mutexed_stats"
require "hitimes/metric"
require "hitimes/value_metric"
require "hitimes/timed_metric"
require "hitimes/timed_value_metric"
|