aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-04-19 12:35:59 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-04-19 12:35:59 -0300
commite35dcd64bc8604b3de64198226b572433642849b (patch)
tree98b3d9fcccba99716820ac411839a9be5fa930f1 /railties
parentfa2e70b6e00c72b77b574d291be79caee1a045f0 (diff)
downloadrails-e35dcd64bc8604b3de64198226b572433642849b.tar.gz
rails-e35dcd64bc8604b3de64198226b572433642849b.tar.bz2
rails-e35dcd64bc8604b3de64198226b572433642849b.zip
Rails 3.0.0 version bootup messages
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/command_line.textile13
1 files changed, 7 insertions, 6 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile
index 2a42bcf211..ab024d7fc3 100644
--- a/railties/guides/source/command_line.textile
+++ b/railties/guides/source/command_line.textile
@@ -64,12 +64,13 @@ Without any prodding of any kind, +rails server+ will run our new shiny Rails ap
<shell>
$ cd commandsapp
$ rails server
-=> Booting WEBrick...
-=> Rails 2.2.0 application started on http://0.0.0.0:3000
-=> Ctrl-C to shutdown server; call with --help for options
-[2008-11-04 10:11:38] INFO WEBrick 1.3.1
-[2008-11-04 10:11:38] INFO ruby 1.8.5 (2006-12-04) [i486-linux]
-[2008-11-04 10:11:38] INFO WEBrick::HTTPServer#start: pid=18994 port=3000
+=> Booting WEBrick
+=> Rails 3.0.0 application starting in development on http://0.0.0.0:3000
+=> Call with -d to detach
+=> Ctrl-C to shutdown server
+[2010-04-18 03:20:33] INFO WEBrick 1.3.1
+[2010-04-18 03:20:33] INFO ruby 1.8.7 (2010-01-10) [x86_64-linux]
+[2010-04-18 03:20:33] INFO WEBrick::HTTPServer#start: pid=26086 port=3000
</shell>
With just three commands we whipped up a Rails server listening on port 3000. Go to your browser and open "http://localhost:3000":http://localhost:3000, you will see a basic rails app running.