aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorDimitri De Frenne <dimitri.defrenne@vasco.com>2012-03-26 11:28:55 +0200
committerDimitri De Frenne <dimitri.defrenne@vasco.com>2012-03-26 11:28:55 +0200
commitddab3df8d15a854e394623b8aee8c43395e77efe (patch)
treeff3a48a83fca18c1a3a381e81e385f95ce99b0f1 /guides/source
parent492e91cc3441a1d0fc8e959bf46b374d424b711e (diff)
downloadrails-ddab3df8d15a854e394623b8aee8c43395e77efe.tar.gz
rails-ddab3df8d15a854e394623b8aee8c43395e77efe.tar.bz2
rails-ddab3df8d15a854e394623b8aee8c43395e77efe.zip
Made it a bit more clear where to run rails/server
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/engines.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.textile b/guides/source/engines.textile
index 23b1a2fcb8..047f9afd76 100644
--- a/guides/source/engines.textile
+++ b/guides/source/engines.textile
@@ -219,7 +219,7 @@ By default, the scaffold styling is not applied to the engine as the engine's la
<%= stylesheet_link_tag "scaffold" %>
</erb>
-You can see what the engine has so far by running +rake db:migrate+ at the root of our engine to run the migration generated by the scaffold generator, and then running +rails server+. When you open +http://localhost:3000/blorgh/posts+ you will see the default scaffold that has been generated.
+You can see what the engine has so far by running +rake db:migrate+ at the root of our engine to run the migration generated by the scaffold generator, and then running +rails server+ in +test/dummy+. When you open +http://localhost:3000/blorgh/posts+ you will see the default scaffold that has been generated.
!images/engines_scaffold.png(Blank engine scaffold)!