diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:40:50 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:40:50 +0000 |
commit | 4fb6ed4c1c35ba055df36602e3d75b68e7fcb212 (patch) | |
tree | 5a4cd07221be5571e732e31f95f188b402e9764e /railties/Rakefile | |
parent | c5d6aa2b18a0c52ffdad6f1ebdb828e326128612 (diff) | |
download | rails-4fb6ed4c1c35ba055df36602e3d75b68e7fcb212.tar.gz rails-4fb6ed4c1c35ba055df36602e3d75b68e7fcb212.tar.bz2 rails-4fb6ed4c1c35ba055df36602e3d75b68e7fcb212.zip |
Renamed breakpointing to breakpointer
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@185 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |