aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source/creating_plugins/index.txt
diff options
context:
space:
mode:
authorJeff Dean <jeff@zilkey.com>2008-11-16 20:30:42 -0500
committerJeff Dean <jeff@zilkey.com>2008-11-16 20:30:42 -0500
commit097b4678f6d52e86a9d46ba6c862e6eb6ef7bbdd (patch)
treea7cdd348247eaf32016d37b4d4596054e17353ee /railties/doc/guides/source/creating_plugins/index.txt
parentb58d0a944726f26d48d44e7b002e0b0bad32fe85 (diff)
downloadrails-097b4678f6d52e86a9d46ba6c862e6eb6ef7bbdd.tar.gz
rails-097b4678f6d52e86a9d46ba6c862e6eb6ef7bbdd.tar.bz2
rails-097b4678f6d52e86a9d46ba6c862e6eb6ef7bbdd.zip
Plugin Guide: added section on migrations, updated generator section, tightened up spacing of P's inside LI's
Diffstat (limited to 'railties/doc/guides/source/creating_plugins/index.txt')
-rw-r--r--railties/doc/guides/source/creating_plugins/index.txt16
1 files changed, 10 insertions, 6 deletions
diff --git a/railties/doc/guides/source/creating_plugins/index.txt b/railties/doc/guides/source/creating_plugins/index.txt
index 19484e2830..5d10fa4f31 100644
--- a/railties/doc/guides/source/creating_plugins/index.txt
+++ b/railties/doc/guides/source/creating_plugins/index.txt
@@ -29,23 +29,27 @@ This guide describes how to build a test-driven plugin that will:
For the purpose of this guide pretend for a moment that you are an avid bird watcher. Your favorite bird is the Yaffle, and you want to create a plugin that allows other developers to share in the Yaffle goodness. First, you need to get setup for development.
-include::test_setup.txt[]
+include::setup.txt[]
+
+include::tests.txt[]
include::core_ext.txt[]
include::acts_as_yaffle.txt[]
-include::migration_generator.txt[]
-
-include::generator_method.txt[]
-
include::models.txt[]
include::controllers.txt[]
include::helpers.txt[]
-include::custom_route.txt[]
+include::routes.txt[]
+
+include::generators.txt[]
+
+include::generator_commands.txt[]
+
+include::migrations.txt[]
include::odds_and_ends.txt[]