diff options
author | Xavier Noria <fxn@hashref.com> | 2010-08-25 00:17:02 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-08-25 00:17:02 +0200 |
commit | 036f090df1c1595ef47a8badf7514485f7de06c3 (patch) | |
tree | fe00e7988c2bef6d429e958344a45cc0d760fe19 /railties | |
parent | 80e1f730a264a1875e2866cdff4b70b440f36159 (diff) | |
parent | 1a6c81c4f9076885aee593b4aa3704b5cdbeb879 (diff) | |
download | rails-036f090df1c1595ef47a8badf7514485f7de06c3.tar.gz rails-036f090df1c1595ef47a8badf7514485f7de06c3.tar.bz2 rails-036f090df1c1595ef47a8badf7514485f7de06c3.zip |
Merge remote branch 'docrails/master'
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
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 |