# File lib/rspec/core/command_line_configuration.rb, line 34
          def create_dot_rspec_file
            puts "Autotest loads RSpec's Autotest subclass when there is a .rspec file in the project's root directory."
            if File.exist?('./.rspec')
              puts ".rspec file already exists, so nothing was changed."
            else
              FileUtils.touch('./.rspec')
              puts ".rspec file did not exist, so it was created."
            end
          end