aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2008-09-14 07:48:22 -0500
committerMike Gunderloy <MikeG1@larkfarm.com>2008-09-14 07:48:31 -0500
commit5ca354133fd837ec75d98b3fc73936b2650046fe (patch)
tree59cb08b3ce8ec793357ca1f096533eb52fa301a5
parent5d95437abe073ced869a1ed686b09308043dae30 (diff)
downloadrails-5ca354133fd837ec75d98b3fc73936b2650046fe.tar.gz
rails-5ca354133fd837ec75d98b3fc73936b2650046fe.tar.bz2
rails-5ca354133fd837ec75d98b3fc73936b2650046fe.zip
Add author info/changelogs for Routing & Associations guides
-rw-r--r--railties/doc/guides/activerecord/association_basics.txt6
-rw-r--r--railties/doc/guides/authors.txt7
-rw-r--r--railties/doc/guides/routing/routing_outside_in.txt8
3 files changed, 20 insertions, 1 deletions
diff --git a/railties/doc/guides/activerecord/association_basics.txt b/railties/doc/guides/activerecord/association_basics.txt
index 9d950c91dd..704971d0e8 100644
--- a/railties/doc/guides/activerecord/association_basics.txt
+++ b/railties/doc/guides/activerecord/association_basics.txt
@@ -1655,3 +1655,9 @@ Extensions can refer to the internals of the association proxy using these three
* +proxy_owner+ returns the object that the association is a part of.
* +proxy_reflection+ returns the reflection object that describes the association.
* +proxy_target+ returns the associated object for +belongs_to+ or +has_one+, or the collection of associated objects for +has_many+ or +has_and_belongs_to_many+.
+
+== Changelog ==
+
+http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/11[Lighthouse ticket]
+
+* September 14, 2008: initial version by link:../authors.html#mgunderloy[Mike Gunderloy] (not yet approved for publication)
diff --git a/railties/doc/guides/authors.txt b/railties/doc/guides/authors.txt
index ca817d8f77..39307a08e9 100644
--- a/railties/doc/guides/authors.txt
+++ b/railties/doc/guides/authors.txt
@@ -6,4 +6,11 @@ About the Authors
***********************************************************
Frederick Cheung is Chief Wizard at Texperts where he has been using Rails since 2006.
He is based in Cambridge (UK) and when not consuming fine ales he blogs at http://www.spacevatican.org[spacevatican.org].
+***********************************************************
+
+.Mike Gunderloy
+[[mgunderloy]]
+***********************************************************
+Mike Gunderloy is an independent consultant who brings 25 years of experience in a variety of languages to bear on his current
+work with Rails. His near-daily links and other blogging can be found at http://afreshcup.com[A Fresh Cup].
*********************************************************** \ No newline at end of file
diff --git a/railties/doc/guides/routing/routing_outside_in.txt b/railties/doc/guides/routing/routing_outside_in.txt
index bc08b107cf..415ab92f34 100644
--- a/railties/doc/guides/routing/routing_outside_in.txt
+++ b/railties/doc/guides/routing/routing_outside_in.txt
@@ -835,4 +835,10 @@ The +assert_routing+ assertion checks the route both ways: it tests that the pat
[source, ruby]
-------------------------------------------------------
assert_routing { :path => "photos", :method => :post }, { :controller => "photos", :action => "create" }
-------------------------------------------------------- \ No newline at end of file
+-------------------------------------------------------
+
+== Changelog ==
+
+http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/3[Lighthouse ticket]
+
+* September 10, 2008: initial version by link:../authors.html#mgunderloy[Mike Gunderloy]