<?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: Getting Started With Cappuccino and Ruby on Rails</title>
	<atom:link href="http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/</link>
	<description>Home of Cappuccino and Objective-J</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:12:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alex</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-418</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 11 Jul 2009 19:06:46 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-418</guid>
		<description>Thanks for this guide.  I&#039;m working on my first Cappuccino UI and this is pretty neat stuff.  &lt;br&gt;&lt;br&gt;I had never heard of JSONP but am excited to start working with it in my first Cappuccino app.</description>
		<content:encoded><![CDATA[<p>Thanks for this guide.  I&#39;m working on my first Cappuccino UI and this is pretty neat stuff.  </p>
<p>I had never heard of JSONP but am excited to start working with it in my first Cappuccino app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jakub Suder</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-368</link>
		<dc:creator>Jakub Suder</dc:creator>
		<pubDate>Tue, 14 Apr 2009 19:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-368</guid>
		<description>I agree, that&#039;s the way to do it. And regarding the wrapping in a &quot;movie&quot; object: that can be turned off by setting config.active_record.include_root_in_json = false in environment.</description>
		<content:encoded><![CDATA[<p>I agree, that&#39;s the way to do it. And regarding the wrapping in a &#8220;movie&#8221; object: that can be turned off by setting config.active_record.include_root_in_json = false in environment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Double Shot #331 &#171; A Fresh Cup</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-235</link>
		<dc:creator>Double Shot #331 &#171; A Fresh Cup</dc:creator>
		<pubDate>Thu, 13 Nov 2008 12:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-235</guid>
		<description>[...] Getting Started with Cappuccino and Ruby on Rails - That&#8217;s the Objective-J framework for desktop-like web applications. [...]</description>
		<content:encoded><![CDATA[<p>[...] Getting Started with Cappuccino and Ruby on Rails &#8211; That&#8217;s the Objective-J framework for desktop-like web applications. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Eby</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-324</link>
		<dc:creator>Sean Eby</dc:creator>
		<pubDate>Tue, 11 Nov 2008 22:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-324</guid>
		<description>Great start, guys. Glad to see this tutorial. I think the &quot;harder&quot; stuff of integrating Cappuccino w/ Rails will be dealing with multi-model and nested-model scenarios. These are more common with full-fledged applications, multiple windows, etc., all things that are possible with Cappuccino. Looking forward to the next level of examples and tips.&lt;br&gt;&lt;br&gt;One other thought: It would be great to see your recommendations on organizing code for a &quot;typical&quot; rails app. Just as Rails creates conventions of model, views, controllers in separate folders (as well as URL resources), Cappuccino has no such hard and fast convention. Would like to see your recommendations on that.</description>
		<content:encoded><![CDATA[<p>Great start, guys. Glad to see this tutorial. I think the &#8220;harder&#8221; stuff of integrating Cappuccino w/ Rails will be dealing with multi-model and nested-model scenarios. These are more common with full-fledged applications, multiple windows, etc., all things that are possible with Cappuccino. Looking forward to the next level of examples and tips.</p>
<p>One other thought: It would be great to see your recommendations on organizing code for a &#8220;typical&#8221; rails app. Just as Rails creates conventions of model, views, controllers in separate folders (as well as URL resources), Cappuccino has no such hard and fast convention. Would like to see your recommendations on that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cypher</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-323</link>
		<dc:creator>cypher</dc:creator>
		<pubDate>Tue, 11 Nov 2008 19:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-323</guid>
		<description>Nice article.&lt;br&gt;&lt;br&gt;One nitpick: Your solution for serializing only certain attributes in JSON isn&#039;t very Rails-like. Instead, first load the model as you usually would, then render like this:&lt;br&gt;&lt;br&gt;    render :json =&gt; @movies.to_json(:only =&gt; [:title, :description])&lt;br&gt;&lt;br&gt;This serializes the objects to JSON with only the title and description attributes. This method is also very flexible, e.g. you can include associations and methods that way too. See the RDoc at &lt;a href=&quot;http://api.rubyonrails.com/classes/ActiveRecord/Serialization.html#M001417&quot; rel=&quot;nofollow&quot;&gt;http://api.rubyonrails.com/classes/ActiveRecord...&lt;/a&gt; for details.</description>
		<content:encoded><![CDATA[<p>Nice article.</p>
<p>One nitpick: Your solution for serializing only certain attributes in JSON isn&#39;t very Rails-like. Instead, first load the model as you usually would, then render like this:</p>
<p>    render :json =&gt; @movies.to_json(:only =&gt; [:title, :description])</p>
<p>This serializes the objects to JSON with only the title and description attributes. This method is also very flexible, e.g. you can include associations and methods that way too. See the RDoc at <a href="http://api.rubyonrails.com/classes/ActiveRecord/Serialization.html#M001417" rel="nofollow"></a><a href="http://api.rubyonrails.com/classes/ActiveRecord.." rel="nofollow">http://api.rubyonrails.com/classes/ActiveRecord..</a>. for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Eby</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-234</link>
		<dc:creator>Sean Eby</dc:creator>
		<pubDate>Tue, 11 Nov 2008 16:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-234</guid>
		<description>Great start, guys. Glad to see this tutorial. I think the &quot;harder&quot; stuff of integrating Cappuccino w/ Rails will be dealing with multi-model and nested-model scenarios. These are more common with full-fledged applications, multiple windows, etc., all things that are possible with Cappuccino. Looking forward to the next level of examples and tips.&lt;br&gt;&lt;br&gt;One other thought: It would be great to see your recommendations on organizing code for a &quot;typical&quot; rails app. Just as Rails creates conventions of model, views, controllers in separate folders (as well as URL resources), Cappuccino has no such hard and fast convention. Would like to see your recommendations on that.</description>
		<content:encoded><![CDATA[<p>Great start, guys. Glad to see this tutorial. I think the &#8220;harder&#8221; stuff of integrating Cappuccino w/ Rails will be dealing with multi-model and nested-model scenarios. These are more common with full-fledged applications, multiple windows, etc., all things that are possible with Cappuccino. Looking forward to the next level of examples and tips.</p>
<p>One other thought: It would be great to see your recommendations on organizing code for a &#8220;typical&#8221; rails app. Just as Rails creates conventions of model, views, controllers in separate folders (as well as URL resources), Cappuccino has no such hard and fast convention. Would like to see your recommendations on that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cypher</title>
		<link>http://cappuccino.org/discuss/2008/11/11/cappuccino-and-ruby-on-rails/comment-page-1/#comment-233</link>
		<dc:creator>cypher</dc:creator>
		<pubDate>Tue, 11 Nov 2008 13:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccino.org/discuss/?p=139#comment-233</guid>
		<description>Nice article.&lt;br&gt;&lt;br&gt;One nitpick: Your solution for serializing only certain attributes in JSON isn&#039;t very Rails-like. Instead, first load the model as you usually would, then render like this:&lt;br&gt;&lt;br&gt;    render :json =&gt; @movies.to_json(:only =&gt; [:title, :description])&lt;br&gt;&lt;br&gt;This serializes the objects to JSON with only the title and description attributes. This method is also very flexible, e.g. you can include associations and methods that way too. See the RDoc at &lt;a href=&quot;http://api.rubyonrails.com/classes/ActiveRecord/Serialization.html#M001417&quot;&gt;http://api.rubyonrails.com/classes/ActiveRecord...&lt;/a&gt; for details.</description>
		<content:encoded><![CDATA[<p>Nice article.</p>
<p>One nitpick: Your solution for serializing only certain attributes in JSON isn&#39;t very Rails-like. Instead, first load the model as you usually would, then render like this:</p>
<p>    render :json =&gt; @movies.to_json(:only =&gt; [:title, :description])</p>
<p>This serializes the objects to JSON with only the title and description attributes. This method is also very flexible, e.g. you can include associations and methods that way too. See the RDoc at <a href="http://api.rubyonrails.com/classes/ActiveRecord/Serialization.html#M001417"></a><a href="http://api.rubyonrails.com/classes/ActiveRecord.." rel="nofollow">http://api.rubyonrails.com/classes/ActiveRecord..</a>. for details.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
