diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:47:04 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-16 15:47:04 +0000 |
commit | cc88e5a61562d7421190c97cda89474bcadad382 (patch) | |
tree | 4782c82ea6105d6ef335e0bcedeb8aaa43328894 /railties/bin | |
parent | b8f8776f0cffc1b73719f16513a5721d77b19186 (diff) | |
download | rails-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/bin')
-rw-r--r-- | railties/bin/console (renamed from railties/bin/envcon) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/bin/envcon b/railties/bin/console index 707d34b985..c64e2a3966 100644 --- a/railties/bin/envcon +++ b/railties/bin/console @@ -8,10 +8,10 @@ else puts <<-HELP NAME - envcon - interact with the domain model through a environment console (on IRB) + console - interact with the domain model through a environment console (on IRB) SYNOPSIS - envcon [environment] + console [environment] DESCRIPTION Starts an environment console using IRB that lets you manipulate and interrogate @@ -21,7 +21,7 @@ DESCRIPTION Tab completion is available to see classes and methods on individual objects. EXAMPLE - envcon production + console production This will initialize the production environment (as setup in config/database.yml and config/environments/production.rb). You would now be ready to start requiring |