module RSpec::Benchmark

def self.configuration

Other tags:
    Api: - public

Returns:
  • (RSpec::Benchmark::Configuration) -
def self.configuration
  @configuration ||= Configuration.new
end

def self.configure

Other tags:
    Api: - public
def self.configure
  yield configuration
end

def self.reset_configuration

Other tags:
    Api: - public

Returns:
  • (RSpec::Benchmark::Configuration) -
def self.reset_configuration
  @configuration = Configuration.new
end