module RubyMemcheck

Constants

VERSION

Public Class Methods

config(**opts) click to toggle source
# File lib/ruby_memcheck.rb, line 17
def config(**opts)
  @default_configuration = Configuration.new(**opts)
end
default_configuration() click to toggle source
# File lib/ruby_memcheck.rb, line 21
def default_configuration
  unless @default_configuration
    raise "RubyMemcheck is not configured with a default configuration. "\
      "Please run RubyMemcheck.config before using it."
  end
  @default_configuration
end