diff --git a/railties/Rakefile b/railties/Rakefile index 469f375f31..088bfbe74e 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -21,7 +21,7 @@ TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/testing LOG_FILES = %w( apache.log development.log test.log production.log ) HTML_FILES = %w( 404.html 500.html index.html ) -BIN_FILES = %w( generate breakpointing envcon ) +BIN_FILES = %w( generate breakpointer envcon ) GENERATORS = %w( controller mailer model scaffold ) VENDOR_LIBS = %w( actionpack activerecord actionmailer railties ) @@ -195,7 +195,7 @@ end task :copy_gem_environment do cp "environments/shared_for_gem.rb", "#{PKG_DESTINATION}/config/environment.rb" - cp "bin/breakpointing_for_gem", "#{PKG_DESTINATION}/script/breakpointing" + cp "bin/breakpointer_for_gem", "#{PKG_DESTINATION}/script/breakpointer" end diff --git a/railties/bin/breakpointing b/railties/bin/breakpointer similarity index 100% rename from railties/bin/breakpointing rename to railties/bin/breakpointer diff --git a/railties/bin/breakpointing_for_gem b/railties/bin/breakpointer_for_gem similarity index 100% rename from railties/bin/breakpointing_for_gem rename to railties/bin/breakpointer_for_gem