class RSpec::Core::ProjectInitializer

def run

def run
  warn "The --configure option no longer needs any arguments, so #{@arg} was ignored." if @arg
  create_spec_helper_file
  create_dot_rspec_file
  delete_if_confirmed("autotest/discover.rb", <<-MESSAGE)
c registers its own discover.rb with Autotest, so autotest/discover.rb is
onger needed.
  MESSAGE
  delete_if_confirmed("lib/tasks/rspec.rake", <<-MESSAGE)
he file in lib/tasks/rspec.rake is the one generated by rspec-rails-1x,
can get rid of it, as it is no longer needed with rspec-2.
  MESSAGE
end