<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>[schuchlenz.com] &#187; controller</title>
	<atom:link href="http://www.schuchlenz.com/tag/controller/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schuchlenz.com</link>
	<description>posts.each do { &#124;p&#124; read(p) }</description>
	<lastBuildDate>Thu, 25 Feb 2010 13:25:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ActiveScaffold: How to get started</title>
		<link>http://www.schuchlenz.com/activescaffold-how-to-get-started/</link>
		<comments>http://www.schuchlenz.com/activescaffold-how-to-get-started/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 10:27:18 +0000</pubDate>
		<dc:creator>Stefan Schuchlenz</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[activescaffold]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://www.schuchlenz.com/activescaffold-how-to-get-started/</guid>
		<description><![CDATA[When I took a first peek at ActiveScaffold, I had no idea into how much trouble I&#8217;d run before creating beautiful AND working backends for my applications. I had LOTS of research to do to get around some rather nasty issues and I want to provide you with some info on how to get stuff [...]]]></description>
			<content:encoded><![CDATA[<p>When I took a first peek at <a href="http://www.schuchlenz.com/tag/activescaffold/" class="st_tag internal_tag" rel="tag" title="Posts tagged with activescaffold">ActiveScaffold</a>, I had no idea into how much trouble I&#8217;d run before creating beautiful AND working backends for my applications. I had LOTS of research to do to get around some rather nasty issues and I want to provide you with some info on how to get stuff done.</p>
<p><b>Some prerequisites:</b><br />
I use <a href="http://www.schuchlenz.com/tag/rails/" class="st_tag internal_tag" rel="tag" title="Posts tagged with rails">Rails</a> 2.3.4 at the time this is posted and my gem list shows:</p>
<p>actionmailer (2.3.4)<br />
actionpack (2.3.4)<br />
activerecord (2.3.4)<br />
activeresource (2.3.4)<br />
activesupport (2.3.4)<br />
flickraw (0.7.1)<br />
json (1.1.9)<br />
locale (2.0.4)<br />
locale_rails (2.0.4)<br />
mime-types (1.16)<br />
mysql (2.8.1)<br />
rack (1.0.0)<br />
<a href="http://www.schuchlenz.com/tag/railroad/" class="st_tag internal_tag" rel="tag" title="Posts tagged with railroad">railroad</a> (0.5.0)<br />
<a href="http://www.schuchlenz.com/tag/rails/" class="st_tag internal_tag" rel="tag" title="Posts tagged with rails">rails</a> (2.3.4)<br />
rake (0.8.7)<br />
thoughtbot-paperclip (2.3.1)</p>
<p><b>Installation:</b><br />
To <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> AS, open a shell and type:<br />
<code>ruby script/<a href="http://www.schuchlenz.com/tag/plugin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugin">plugin</a> <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> git://github.com/<a href="http://www.schuchlenz.com/tag/activescaffold/" class="st_tag internal_tag" rel="tag" title="Posts tagged with activescaffold">activescaffold</a>/active_scaffold.git</code><br />
Installs AS and all the necessary stuff<br />
<code>ruby script/<a href="http://www.schuchlenz.com/tag/plugin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugin">plugin</a> <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> git://github.com/<a href="http://www.schuchlenz.com/tag/rails/" class="st_tag internal_tag" rel="tag" title="Posts tagged with rails">rails</a>/in_place_editing.git</code><br />
Ooops, in place editing was missing &#8211; so let&#8217;s <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> it.<br />
<code>ruby script/<a href="http://www.schuchlenz.com/tag/plugin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugin">plugin</a> <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> --force git://github.com/lackac/render_component.git -r <a href="http://www.schuchlenz.com/tag/rails/" class="st_tag internal_tag" rel="tag" title="Posts tagged with rails">rails</a>-edge'</code><br />
Ooops again, render_component was taken out of <a href="http://www.schuchlenz.com/tag/rails/" class="st_tag internal_tag" rel="tag" title="Posts tagged with rails">Rails</a> so subforms wouldn&#8217;t work &#8211; let&#8217;s get around this by installing lackac&#8217;s <a href="http://www.schuchlenz.com/tag/plugin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugin">plugin</a> (thanks!)</p>
<p><b>OK, basically, you are set. What now?</b><br />
The <a href="http://www.schuchlenz.com/tag/activescaffold/" class="st_tag internal_tag" rel="tag" title="Posts tagged with activescaffold">ActiveScaffold</a> website (www.<a href="http://www.schuchlenz.com/tag/activescaffold/" class="st_tag internal_tag" rel="tag" title="Posts tagged with activescaffold">activescaffold</a>.com) and especially their API docs are your bible. So read them, re-read them and re-re-read them while building stuff with AS &#8211; you will need the (rudimentary) tipps included there.<br />
Ok, now let&#8217;s start with integrating AS into our app. Let&#8217;s say you have a basic application which already has a master layout. Put this tag into the <HEAD> of your layout:</p>
<p><code><%= active_scaffold_includes %></code></p>
<p>It includes all the magic needed for AS. To continue, you should have a <a href="http://www.schuchlenz.com/tag/resource/" class="st_tag internal_tag" rel="tag" title="Posts tagged with resource">resource</a> we can work on, in this case I created a <a href="http://www.schuchlenz.com/tag/resource/" class="st_tag internal_tag" rel="tag" title="Posts tagged with resource">resource</a> named &#8220;customer&#8221; to store some customer info in it and work on it with AS:</p>
<p><code>ruby script/generate <a href="http://www.schuchlenz.com/tag/resource/" class="st_tag internal_tag" rel="tag" title="Posts tagged with resource">resource</a> customer name:string phone:string email:string description:string is_active:boolean</code></p>
<p>Migrate the data now:</p>
<p><code>rake db:migrate</code></p>
<p>Edit your customers_controller.rb in app/controllers and put</p>
<p><code>active_scaffold :customer do |config|<br />
end</code></p>
<p>right after</p>
<p><code>class CustomerController < ApplicationController</code></p>
<p>to make AS aware that it should take care of our customers. Now open config/routes.rb and add :active_scaffold => true right after the customer <a href="http://www.schuchlenz.com/tag/resource/" class="st_tag internal_tag" rel="tag" title="Posts tagged with resource">resource</a>. When you start your server and call /customers, you now should see AS in action. Congratulations, this was the first part <img src='http://www.schuchlenz.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this on:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;partner=sociable" title="Print"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;title=ActiveScaffold%3A%20How%20to%20get%20started&amp;bodytext=When%20I%20took%20a%20first%20peek%20at%20ActiveScaffold%2C%20I%20had%20no%20idea%20into%20how%20much%20trouble%20I%27d%20run%20before%20creating%20beautiful%20AND%20working%20backends%20for%20my%20applications.%20I%20had%20LOTS%20of%20research%20to%20do%20to%20get%20around%20some%20rather%20nasty%20issues%20and%20I%20want%20to%20provide%20you%20" title="Digg"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;title=ActiveScaffold%3A%20How%20to%20get%20started&amp;notes=When%20I%20took%20a%20first%20peek%20at%20ActiveScaffold%2C%20I%20had%20no%20idea%20into%20how%20much%20trouble%20I%27d%20run%20before%20creating%20beautiful%20AND%20working%20backends%20for%20my%20applications.%20I%20had%20LOTS%20of%20research%20to%20do%20to%20get%20around%20some%20rather%20nasty%20issues%20and%20I%20want%20to%20provide%20you%20" title="del.icio.us"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;t=ActiveScaffold%3A%20How%20to%20get%20started" title="Facebook"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;title=ActiveScaffold%3A%20How%20to%20get%20started&amp;annotation=When%20I%20took%20a%20first%20peek%20at%20ActiveScaffold%2C%20I%20had%20no%20idea%20into%20how%20much%20trouble%20I%27d%20run%20before%20creating%20beautiful%20AND%20working%20backends%20for%20my%20applications.%20I%20had%20LOTS%20of%20research%20to%20do%20to%20get%20around%20some%20rather%20nasty%20issues%20and%20I%20want%20to%20provide%20you%20" title="Google Bookmarks"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=ActiveScaffold%3A%20How%20to%20get%20started&amp;body=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F" title="email"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;bm_description=ActiveScaffold%3A%20How%20to%20get%20started&amp;plugin=soc" title="MisterWong"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;t=ActiveScaffold%3A%20How%20to%20get%20started" title="MySpace"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;title=ActiveScaffold%3A%20How%20to%20get%20started" title="Reddit"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.schuchlenz.com/feed/" title="RSS"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fwww.schuchlenz.com%2Factivescaffold-how-to-get-started%2F&amp;t=ActiveScaffold%3A%20How%20to%20get%20started&opener=bm&amp;ei=UTF-8&amp;d=When%20I%20took%20a%20first%20peek%20at%20ActiveScaffold%2C%20I%20had%20no%20idea%20into%20how%20much%20trouble%20I%27d%20run%20before%20creating%20beautiful%20AND%20working%20backends%20for%20my%20applications.%20I%20had%20LOTS%20of%20research%20to%20do%20to%20get%20around%20some%20rather%20nasty%20issues%20and%20I%20want%20to%20provide%20you%20" title="Yahoo! Bookmarks"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.schuchlenz.com/rails-integrate-fckeditor-with-activescaffold/" title="Rails: Integrate FCKEditor with ActiveScaffold (30.10.2009)">Rails: Integrate FCKEditor with ActiveScaffold</a> (0)</li>
	<li><a href="http://www.schuchlenz.com/quick-and-dirty-guide-to-your-1st-rails-app-part-1/" title="Quick and Dirty Guide to your 1st Rails app &#8211; Part #1 (03.11.2009)">Quick and Dirty Guide to your 1st Rails app &#8211; Part #1</a> (2)</li>
	<li><a href="http://www.schuchlenz.com/must-have-plugins-for-rails/" title="Must-have plugins for Rails (30.10.2009)">Must-have plugins for Rails</a> (0)</li>
	<li><a href="http://www.schuchlenz.com/mailer-howto-for-rails/" title="Mailer HOWTO for Rails (05.11.2009)">Mailer HOWTO for Rails</a> (2)</li>
	<li><a href="http://www.schuchlenz.com/the-numberhelper-in-rails/" title="The NumberHelper in Rails (30.10.2009)">The NumberHelper in Rails</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.schuchlenz.com/activescaffold-how-to-get-started/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating nice diagrams of your Rails apps</title>
		<link>http://www.schuchlenz.com/creating-nice-diagrams-of-your-rails-apps/</link>
		<comments>http://www.schuchlenz.com/creating-nice-diagrams-of-your-rails-apps/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 11:46:19 +0000</pubDate>
		<dc:creator>Stefan Schuchlenz</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[dot]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[railroad]]></category>
		<category><![CDATA[rubygem]]></category>
		<category><![CDATA[svg]]></category>

		<guid isPermaLink="false">http://www.schuchlenz.com/creating-nice-diagrams-of-your-rails-apps/</guid>
		<description><![CDATA[Using the plugin railroad, you can create dot diagrams (look it up here) for your applications. I do this quite often to get the whole model or controller scheme more transparent and show off the complexity of the app to the customer (yes yes, it&#8217;s so damn impressive ^^).
How to get it:
sudo gem install railroad [...]]]></description>
			<content:encoded><![CDATA[<p>Using the <a href="http://www.schuchlenz.com/tag/plugin/" class="st_tag internal_tag" rel="tag" title="Posts tagged with plugin">plugin</a> <a href="http://www.schuchlenz.com/tag/railroad/" class="st_tag internal_tag" rel="tag" title="Posts tagged with railroad">railroad</a>, you can create <a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> diagrams (look it up <a target="_blank" href="http://en.wikipedia.org/wiki/Dot">here</a>) for your applications. I do this quite often to get the whole <a href="http://www.schuchlenz.com/tag/model/" class="st_tag internal_tag" rel="tag" title="Posts tagged with model">model</a> or <a href="http://www.schuchlenz.com/tag/controller/" class="st_tag internal_tag" rel="tag" title="Posts tagged with controller">controller</a> scheme more transparent and show off the complexity of the app to the customer (yes yes, it&#8217;s so damn impressive ^^).</p>
<p>How to get it:</p>
<p><code>sudo gem <a href="http://www.schuchlenz.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> <a href="http://www.schuchlenz.com/tag/railroad/" class="st_tag internal_tag" rel="tag" title="Posts tagged with railroad">railroad</a> json</code></p>
<p>Then use <a href="http://www.schuchlenz.com/tag/railroad/" class="st_tag internal_tag" rel="tag" title="Posts tagged with railroad">railroad</a> to create a <a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> <a href="http://www.schuchlenz.com/tag/diagram/" class="st_tag internal_tag" rel="tag" title="Posts tagged with diagram">diagram</a> (I go for a <a href="http://www.schuchlenz.com/tag/model/" class="st_tag internal_tag" rel="tag" title="Posts tagged with model">model</a> <a href="http://www.schuchlenz.com/tag/diagram/" class="st_tag internal_tag" rel="tag" title="Posts tagged with diagram">diagram</a> here):</p>
<p><code>raiload -o doc/mymodels.<a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> -M</code></p>
<p>Or create a <a href="http://www.schuchlenz.com/tag/diagram/" class="st_tag internal_tag" rel="tag" title="Posts tagged with diagram">diagram</a> of your controllers with&#8230;</p>
<p><code><a href="http://www.schuchlenz.com/tag/railroad/" class="st_tag internal_tag" rel="tag" title="Posts tagged with railroad">railroad</a> -o doc/mycontrollers.<a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> -a -C</code></p>
<p>Then, use <a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> to create a graphic out of it:</p>
<p><code><a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a> -Tjpg -o doc/mymodels.jpg doc/mymodels.<a href="http://www.schuchlenz.com/tag/dot/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dot">dot</a></code></p>
<p>You can also use -Tsvg (for vector graphics) or -Tpng etc.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this on:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;partner=sociable" title="Print"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;title=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&amp;bodytext=Using%20the%20plugin%20railroad%2C%20you%20can%20create%20dot%20diagrams%20%28look%20it%20up%20here%29%20for%20your%20applications.%20I%20do%20this%20quite%20often%20to%20get%20the%20whole%20model%20or%20controller%20scheme%20more%20transparent%20and%20show%20off%20the%20complexity%20of%20the%20app%20to%20the%20customer%20%28yes%20yes%2C%20it%27s%20s" title="Digg"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;title=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&amp;notes=Using%20the%20plugin%20railroad%2C%20you%20can%20create%20dot%20diagrams%20%28look%20it%20up%20here%29%20for%20your%20applications.%20I%20do%20this%20quite%20often%20to%20get%20the%20whole%20model%20or%20controller%20scheme%20more%20transparent%20and%20show%20off%20the%20complexity%20of%20the%20app%20to%20the%20customer%20%28yes%20yes%2C%20it%27s%20s" title="del.icio.us"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;t=Creating%20nice%20diagrams%20of%20your%20Rails%20apps" title="Facebook"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;title=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&amp;annotation=Using%20the%20plugin%20railroad%2C%20you%20can%20create%20dot%20diagrams%20%28look%20it%20up%20here%29%20for%20your%20applications.%20I%20do%20this%20quite%20often%20to%20get%20the%20whole%20model%20or%20controller%20scheme%20more%20transparent%20and%20show%20off%20the%20complexity%20of%20the%20app%20to%20the%20customer%20%28yes%20yes%2C%20it%27s%20s" title="Google Bookmarks"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&amp;body=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F" title="email"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;bm_description=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&amp;plugin=soc" title="MisterWong"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;t=Creating%20nice%20diagrams%20of%20your%20Rails%20apps" title="MySpace"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;title=Creating%20nice%20diagrams%20of%20your%20Rails%20apps" title="Reddit"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.schuchlenz.com/feed/" title="RSS"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fwww.schuchlenz.com%2Fcreating-nice-diagrams-of-your-rails-apps%2F&amp;t=Creating%20nice%20diagrams%20of%20your%20Rails%20apps&opener=bm&amp;ei=UTF-8&amp;d=Using%20the%20plugin%20railroad%2C%20you%20can%20create%20dot%20diagrams%20%28look%20it%20up%20here%29%20for%20your%20applications.%20I%20do%20this%20quite%20often%20to%20get%20the%20whole%20model%20or%20controller%20scheme%20more%20transparent%20and%20show%20off%20the%20complexity%20of%20the%20app%20to%20the%20customer%20%28yes%20yes%2C%20it%27s%20s" title="Yahoo! Bookmarks"><img src="http://www.schuchlenz.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.schuchlenz.com/rails-integrate-fckeditor-with-activescaffold/" title="Rails: Integrate FCKEditor with ActiveScaffold (30.10.2009)">Rails: Integrate FCKEditor with ActiveScaffold</a> (0)</li>
	<li><a href="http://www.schuchlenz.com/quick-and-dirty-guide-to-your-1st-rails-app-part-1/" title="Quick and Dirty Guide to your 1st Rails app &#8211; Part #1 (03.11.2009)">Quick and Dirty Guide to your 1st Rails app &#8211; Part #1</a> (2)</li>
	<li><a href="http://www.schuchlenz.com/must-have-plugins-for-rails/" title="Must-have plugins for Rails (30.10.2009)">Must-have plugins for Rails</a> (0)</li>
	<li><a href="http://www.schuchlenz.com/activescaffold-how-to-get-started/" title="ActiveScaffold: How to get started (02.11.2009)">ActiveScaffold: How to get started</a> (2)</li>
	<li><a href="http://www.schuchlenz.com/5-useful-firefox-addons-for-web-developers/" title="5 useful Firefox addons for web developers (02.11.2009)">5 useful Firefox addons for web developers</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.schuchlenz.com/creating-nice-diagrams-of-your-rails-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
