class Utils::ConfigFile::Probe

def include_dirs_argument

Returns:
  • (String) - a colon-separated string of include directory paths
def include_dirs_argument
  Array(include_dirs) * ':'
end

def initialize(&block)

Parameters:
  • block (Proc) -- a block to be passed to the superclass initializer
def initialize(&block)
  super
  test_frameworks_allowed = [ :'test-unit', :rspec ]
  test_frameworks_allowed.include?(test_framework) or
    raise ConfigFileError,
      "test_framework has to be in #{test_frameworks_allowed.inspect}"
end