aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-08-25 00:17:02 +0200
committerXavier Noria <fxn@hashref.com>2010-08-25 00:17:02 +0200
commit036f090df1c1595ef47a8badf7514485f7de06c3 (patch)
treefe00e7988c2bef6d429e958344a45cc0d760fe19 /railties/guides/source
parent80e1f730a264a1875e2866cdff4b70b440f36159 (diff)
parent1a6c81c4f9076885aee593b4aa3704b5cdbeb879 (diff)
downloadrails-036f090df1c1595ef47a8badf7514485f7de06c3.tar.gz
rails-036f090df1c1595ef47a8badf7514485f7de06c3.tar.bz2
rails-036f090df1c1595ef47a8badf7514485f7de06c3.zip
Merge remote branch 'docrails/master'
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index e68a82e9db..c292daa915 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -488,6 +488,8 @@ After the console loads, you can use it to work with your application's models:
This code shows creating a new +Post+ instance, attempting to save it and getting +false+ for a return value (indicating that the save failed), and inspecting the +errors+ of the post.
+When you're finished, type +exit+ and hit +return+ to exit the console.
+
TIP: Unlike the development web server, the console does not automatically load your code afresh for each line. If you make changes to your models while the console is open, type +reload!+ at the console prompt to load them.
h4. Listing All Posts