diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2013-06-15 05:56:18 -0700 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2013-06-15 05:56:18 -0700 |
commit | af8cbfa7b16aa1d6dbe57404535192b4a3c32c92 (patch) | |
tree | 7e6ac8c8a2cb3ac6a0ad628d1585bcbcc0b87998 | |
parent | b014f2829963c2224d95bf15079114654e7a5fb2 (diff) | |
parent | 3741dc758f6bd48fa4e44b095fd20b179e981386 (diff) | |
download | rails-af8cbfa7b16aa1d6dbe57404535192b4a3c32c92.tar.gz rails-af8cbfa7b16aa1d6dbe57404535192b4a3c32c92.tar.bz2 rails-af8cbfa7b16aa1d6dbe57404535192b4a3c32c92.zip |
Merge pull request #150 from vatrai/edgerails_in_command_line
replace version 3.2.3 by 4.0.0.beta in command line
-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 0b36f0859f..ec3ba9d704 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -66,7 +66,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 @@ -291,7 +291,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> ``` |