<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Implementing Django&#8217;s Modular Apps Feature in Rails</title>
	<atom:link href="http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/feed" rel="self" type="application/rss+xml" />
	<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails</link>
	<description>Let There Be Software!</description>
	<lastBuildDate>Sat, 19 Sep 2009 09:36:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: zerohalo</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-27</link>
		<dc:creator>zerohalo</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-27</guid>
		<description>&lt;p&gt;I agree that the Django approach to a project, with apps within it, makes a lot of sense - especially for websites that have more than one application running in them (which is many of them).&lt;/p&gt;

&lt;p&gt;Django&#039;s &quot;free&quot; Admin interface is a killer feature. Rails is getting there with Streamlined and AjaxScaffold, but still has some catching up to do.&lt;/p&gt;

&lt;p&gt;That&#039;s not to say I prefer Django to Rails in general, but it would be nice if Rails could implement the best of Django.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I agree that the Django approach to a project, with apps within it, makes a lot of sense - especially for websites that have more than one application running in them (which is many of them).</p>

<p>Django&#8217;s &#8220;free&#8221; Admin interface is a killer feature. Rails is getting there with Streamlined and AjaxScaffold, but still has some catching up to do.</p>

<p>That&#8217;s not to say I prefer Django to Rails in general, but it would be nice if Rails could implement the best of Django.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Holovaty</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-28</link>
		<dc:creator>Adrian Holovaty</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-28</guid>
		<description>&lt;p&gt;One cool way to get into Django (and to take advantage of modularity in general) is by using it for the admin interface while maintaining the rest of your legacy Rails site. There&#039;s no reason not to mix and match, if you&#039;ve got legacy Ruby code.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>One cool way to get into Django (and to take advantage of modularity in general) is by using it for the admin interface while maintaining the rest of your legacy Rails site. There&#8217;s no reason not to mix and match, if you&#8217;ve got legacy Ruby code.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Lavena</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-29</link>
		<dc:creator>Luis Lavena</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-29</guid>
		<description>&lt;p&gt;@zerohalo: There is also &lt;a href=&quot;http://agilewebdevelopment.com/plugins/roar_offers_automated_rails&quot;&gt;Roar&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Their approach is quite different, but very easy to implement admins views to your existing controllers (thinking in a REST way, of course).&lt;/p&gt;

&lt;p&gt;Its good to see that engines now is just a simpler &quot;patch&quot; to rails 1.2 to provide additional paths to controllers, models and views, compared to previous versions ;-)&lt;/p&gt;

&lt;p&gt;Good article, btw :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@zerohalo: There is also <a href="http://agilewebdevelopment.com/plugins/roar_offers_automated_rails">Roar</a></p>

<p>Their approach is quite different, but very easy to implement admins views to your existing controllers (thinking in a REST way, of course).</p>

<p>Its good to see that engines now is just a simpler &#8220;patch&#8221; to rails 1.2 to provide additional paths to controllers, models and views, compared to previous versions ;-)</p>

<p>Good article, btw :-)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Bicking</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-30</link>
		<dc:creator>Ian Bicking</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-30</guid>
		<description>&lt;p&gt;Another way to support multiple apps (used by &lt;a href=&quot;http://pylonshq.com&quot;&gt;Pylons&lt;/a&gt;) is &lt;a href=&quot;http://pythonpaste.org/deploy/&quot;&gt;Paste Deploy&lt;/a&gt; -- which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with &lt;a href=&quot;http://rack.rubyforge.org/&quot;&gt;Rack&lt;/a&gt; is now something of a possibility in Ruby as well.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Another way to support multiple apps (used by <a href="http://pylonshq.com">Pylons</a>) is <a href="http://pythonpaste.org/deploy/">Paste Deploy</a> &#8212; which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with <a href="http://rack.rubyforge.org/">Rack</a> is now something of a possibility in Ruby as well.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Bicking</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-31</link>
		<dc:creator>Ian Bicking</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-31</guid>
		<description>&lt;p&gt;Another way to support multiple apps (used by &lt;a href=&quot;http://pylonshq.com&quot;&gt;Pylons&lt;/a&gt;) is &lt;a href=&quot;http://pythonpaste.org/deploy/&quot;&gt;Paste Deploy&lt;/a&gt; -- which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with &lt;a href=&quot;http://rack.rubyforge.org/&quot;&gt;Rack&lt;/a&gt; is now something of a possibility in Ruby as well.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Another way to support multiple apps (used by <a href="http://pylonshq.com">Pylons</a>) is <a href="http://pythonpaste.org/deploy/">Paste Deploy</a> &#8212; which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with <a href="http://rack.rubyforge.org/">Rack</a> is now something of a possibility in Ruby as well.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Bicking</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-32</link>
		<dc:creator>Ian Bicking</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-32</guid>
		<description>&lt;p&gt;Another way to support multiple apps (used by &lt;a href=&quot;http://pylonshq.com&quot;&gt;Pylons&lt;/a&gt;) is &lt;a href=&quot;http://pythonpaste.org/deploy/&quot;&gt;Paste Deploy&lt;/a&gt; -- which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with &lt;a href=&quot;http://rack.rubyforge.org/&quot;&gt;Rack&lt;/a&gt; is now something of a possibility in Ruby as well.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Another way to support multiple apps (used by <a href="http://pylonshq.com">Pylons</a>) is <a href="http://pythonpaste.org/deploy/">Paste Deploy</a> &#8212; which is more of a package-based system (gem-based in Ruby).  It uses WSGI for dispatching, which with <a href="http://rack.rubyforge.org/">Rack</a> is now something of a possibility in Ruby as well.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Grossberg</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-33</link>
		<dc:creator>Joe Grossberg</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-33</guid>
		<description>&lt;p&gt;&quot;There&#039;s no reason not to mix and match, if you&#039;ve got legacy Ruby code.&quot;&lt;/p&gt;

&lt;p&gt;Yeah, there is -- you now need a team that can develop, debug, deploy, maintain and optimize in both Ruby/Rails and Python/Django.&lt;/p&gt;

&lt;p&gt;That&#039;s not the end of the world, and I personally like both languages and both frameworks.&lt;/p&gt;

&lt;p&gt;But I don&#039;t think adding another language and framework to a site is a decision that should be taken lightly.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;There&#8217;s no reason not to mix and match, if you&#8217;ve got legacy Ruby code.&#8221;</p>

<p>Yeah, there is &#8212; you now need a team that can develop, debug, deploy, maintain and optimize in both Ruby/Rails and Python/Django.</p>

<p>That&#8217;s not the end of the world, and I personally like both languages and both frameworks.</p>

<p>But I don&#8217;t think adding another language and framework to a site is a decision that should be taken lightly.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Kev Mises</title>
		<link>http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails/comment-page-1#comment-34</link>
		<dc:creator>Kev Mises</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://fiatdev.com/2007/03/31/implementing-djangos-modular-apps-feature-in-rails#comment-34</guid>
		<description>&lt;p&gt;&#039;Legacy&#039; rails code????&lt;/p&gt;

&lt;p&gt;That&#039;s rich.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8216;Legacy&#8217; rails code????</p>

<p>That&#8217;s rich.</p>]]></content:encoded>
	</item>
</channel>
</rss>
