class Pfm::Settings

def create_config

create the config directory and file if they don't already exist
def create_config
  return if config_exists?
  FileUtils.mkdir_p config_dir
  FileUtils.touch config_file
  write_config
end