diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2013-06-15 11:01:50 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2013-06-15 11:01:50 +0530 |
commit | 3741dc758f6bd48fa4e44b095fd20b179e981386 (patch) | |
tree | a1c01de13a12775acb57fff0e27c0f24f33b57a6 /guides | |
parent | 57c0b54a915d15370173237fcbd3d14174ba6cb8 (diff) | |
download | rails-3741dc758f6bd48fa4e44b095fd20b179e981386.tar.gz rails-3741dc758f6bd48fa4e44b095fd20b179e981386.tar.bz2 rails-3741dc758f6bd48fa4e44b095fd20b179e981386.zip |
replace version 3.2.3 by 4.0.0.beta in command line
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/command_line.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index e0b44bbf93..a0255f3de2 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -64,7 +64,7 @@ With no further work, `rails server` will run our new shiny Rails app: $ cd commandsapp $ rails server => Booting WEBrick -=> Rails 3.2.3 application starting in development on http://0.0.0.0:3000 +=> Rails 4.0.0.beta application starting in development on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server [2012-05-28 00:39:41] INFO WEBrick 1.3.1 @@ -289,7 +289,7 @@ If you wish to test out some code without changing any data, you can do that by ```bash $ rails console --sandbox -Loading development environment in sandbox (Rails 3.2.3) +Loading development environment in sandbox (Rails 4.0.0.beta) Any modifications you make will be rolled back on exit irb(main):001:0> ``` |