aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 15:47:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 15:47:04 +0000
commitcc88e5a61562d7421190c97cda89474bcadad382 (patch)
tree4782c82ea6105d6ef335e0bcedeb8aaa43328894 /railties/Rakefile
parentb8f8776f0cffc1b73719f16513a5721d77b19186 (diff)
downloadrails-cc88e5a61562d7421190c97cda89474bcadad382.tar.gz
rails-cc88e5a61562d7421190c97cda89474bcadad382.tar.bz2
rails-cc88e5a61562d7421190c97cda89474bcadad382.zip
Renamed script/envcon to script/console
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@187 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index dc3f7a9679..1de116b5cd 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 breakpointer envcon server )
+BIN_FILES = %w( generate breakpointer console server )
GENERATORS = %w( controller mailer model scaffold )
VENDOR_LIBS = %w( actionpack activerecord actionmailer railties )
@@ -109,8 +109,8 @@ task :copy_dispatches do
cp "dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi"
chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"
- cp "bin/envcon", "#{PKG_DESTINATION}/script/envcon"
- chmod 0755, "#{PKG_DESTINATION}/script/envcon"
+ cp "bin/console", "#{PKG_DESTINATION}/script/console"
+ chmod 0755, "#{PKG_DESTINATION}/script/console"
end
task :copy_html_files do