class Cucumber::Cli::ProfileLoader

def ensure_configuration_file_exists

def ensure_configuration_file_exists
  return if cucumber_yml_defined?
  raise(ProfilesNotDefinedError, "cucumber.yml was not found.  Current directory is #{Dir.pwd}." \
                                 "Please refer to cucumber's documentation on defining profiles in cucumber.yml.  You must define" \
                                 "a 'default' profile to use the cucumber command without any arguments.\nType 'cucumber --help' for usage.\n")
end