# File lib/rubyrep/generate_runner.rb, line 83
    def execute
      if File.exists?(options[:file_name])
        raise("Cowardly refuse to overwrite existing file '#{options[:file_name]}'")
      end
      File.open(options[:file_name], 'w') do |f|
        f.write CONFIG_TEMPLATE
      end
    end