diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-14 08:23:50 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-14 08:23:50 +0000 |
commit | 624d5bb176de5212bea43a1c57a95f48676c6e9f (patch) | |
tree | 9bba432db896b085abe9e233dc037312cea197cf /railties/Rakefile | |
parent | 75b8ac80d988c39e48966d6b60f0d1d46c0d75a6 (diff) | |
download | rails-624d5bb176de5212bea43a1c57a95f48676c6e9f.tar.gz rails-624d5bb176de5212bea43a1c57a95f48676c6e9f.tar.bz2 rails-624d5bb176de5212bea43a1c57a95f48676c6e9f.zip |
Added script/benchmarker to easily benchmark one or more statement a number of times from within the environment. Added script/profiler to easily profile a single statement from within the environment
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1166 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 6b0bd8c7c1..b18d5e20ea 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -26,7 +26,7 @@ TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test ) LOG_FILES = %w( server.log development.log test.log production.log ) HTML_FILES = %w( 404.html 500.html index.html favicon.ico javascripts/prototype.js ) -BIN_FILES = %w( generate destroy breakpointer console server update runner ) +BIN_FILES = %w( generate destroy breakpointer console console_sandbox server update runner profiler benchmarker ) VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties ) |