diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-19 12:30:58 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-19 12:30:58 -0300 |
commit | fdf032d673e9952ffe59f60423f53310499e5029 (patch) | |
tree | ecdc6d02b28c854860a883d6a47cff04ff56891d /railties/guides/source | |
parent | 792910bb69078ff1d14a6384b50e51aba2aae2dd (diff) | |
download | rails-fdf032d673e9952ffe59f60423f53310499e5029.tar.gz rails-fdf032d673e9952ffe59f60423f53310499e5029.tar.bz2 rails-fdf032d673e9952ffe59f60423f53310499e5029.zip |
rails about is now rake about
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/command_line.textile | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile index ebae320ebc..873691d13c 100644 --- a/railties/guides/source/command_line.textile +++ b/railties/guides/source/command_line.textile @@ -320,21 +320,20 @@ h4. +about+ Check it: Version numbers for Ruby, RubyGems, Rails, the Rails subcomponents, your application's folder, the current Rails environment name, your app's database adapter, and schema version! +about+ is useful when you need to ask for help, check if a security patch might affect you, or when you need some stats for an existing Rails installation. <shell> -$ rails about +$ rake about About your application's environment -Ruby version 1.8.6 (i486-linux) -RubyGems version 1.3.1 -Rails version 2.2.0 -Active Record version 2.2.0 -Action Pack version 2.2.0 -Active Resource version 2.2.0 -Action Mailer version 2.2.0 -Active Support version 2.2.0 -Edge Rails revision unknown -Application root /home/commandsapp +Ruby version 1.8.7 (x86_64-linux) +RubyGems version 1.3.6 +Rack version 1.1 +Rails version 3.0.0 +Active Record version 3.0.0 +Action Pack version 3.0.0 +Active Resource version 3.0.0 +Action Mailer version 3.0.0 +Active Support version 3.0.0 +Middleware ActionDispatch::Static, Rack::Lock, Rack::Runtime, Rails::Rack::Logger, ActionDispatch::ShowExceptions, ActionDispatch::RemoteIp, Rack::Sendfile, ActionDispatch::Callbacks, ActionDispatch::Cookies, ActionDispatch::Session::CookieStore, ActionDispatch::Flash, ActionDispatch::ParamsParser, Rack::MethodOverride, ActionDispatch::Head +Application root /home/myapp Environment development -Database adapter sqlite3 -Database schema version 20081217073400 </shell> h3. The Rails Advanced Command Line |