<?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: MacRuby &#8211; First Impression</title>
	<atom:link href="http://objcolumnist.com/2010/03/12/macruby-first-impression/feed/" rel="self" type="application/rss+xml" />
	<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/</link>
	<description>Coding under the Hammer</description>
	<lastBuildDate>Tue, 10 Jan 2012 20:25:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Kevin</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-843</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Thu, 17 Mar 2011 17:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-843</guid>
		<description>Just what I needed.

Thanks for posting this.</description>
		<content:encoded><![CDATA[<p>Just what I needed.</p>
<p>Thanks for posting this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spencer MacDonald</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-521</link>
		<dc:creator>Spencer MacDonald</dc:creator>
		<pubDate>Sun, 14 Mar 2010 17:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-521</guid>
		<description>Hi Duncan,

Yes you can. When you deploy your application you include the MacRuby Framework as an embedded framework, the same way you would do with any Mac OS framework that isn&#039;t included with the OS e.g. Growl, Sparkle etc. 

Doing this means that users of your application do not need to have installed the MacRuby SDK to use it, and that you can have access to Ruby functionality as long as you embed the relevant source in the build.</description>
		<content:encoded><![CDATA[<p>Hi Duncan,</p>
<p>Yes you can. When you deploy your application you include the MacRuby Framework as an embedded framework, the same way you would do with any Mac OS framework that isn&#8217;t included with the OS e.g. Growl, Sparkle etc. </p>
<p>Doing this means that users of your application do not need to have installed the MacRuby SDK to use it, and that you can have access to Ruby functionality as long as you embed the relevant source in the build.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Fleming</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-520</link>
		<dc:creator>Duncan Fleming</dc:creator>
		<pubDate>Sat, 13 Mar 2010 21:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-520</guid>
		<description>Great post, very interesting stuff.

I know Ruby has a lot of it&#039;s own frameworks (Not the Obj-c ones) is it possible to build a mac app and mix both the ruby frameworks and Obj-c ones?</description>
		<content:encoded><![CDATA[<p>Great post, very interesting stuff.</p>
<p>I know Ruby has a lot of it&#8217;s own frameworks (Not the Obj-c ones) is it possible to build a mac app and mix both the ruby frameworks and Obj-c ones?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spencer MacDonald</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-518</link>
		<dc:creator>Spencer MacDonald</dc:creator>
		<pubDate>Sat, 13 Mar 2010 14:23:01 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-518</guid>
		<description>Yeah I know :)

Just it is an easy example to give, will point that out in the post to make it clearer.</description>
		<content:encoded><![CDATA[<p>Yeah I know <img src='http://objcolumnist.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Just it is an easy example to give, will point that out in the post to make it clearer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Wise</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-517</link>
		<dc:creator>Ted Wise</dc:creator>
		<pubDate>Sat, 13 Mar 2010 13:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-517</guid>
		<description>This Objective-C code:

NSString *string = [NSString stringWithString:@&quot;Test string&quot;];

Has the Ruby equivalent:

string = &quot;Test String&quot;

Strings in MacRuby are NSMutableStrings, which are subclasses of NSString.  You don&#039;t need to alloc or construct them.</description>
		<content:encoded><![CDATA[<p>This Objective-C code:</p>
<p>NSString *string = [NSString stringWithString:@"Test string"];</p>
<p>Has the Ruby equivalent:</p>
<p>string = &#8220;Test String&#8221;</p>
<p>Strings in MacRuby are NSMutableStrings, which are subclasses of NSString.  You don&#8217;t need to alloc or construct them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: StuFF mc</title>
		<link>http://objcolumnist.com/2010/03/12/macruby-first-impression/comment-page-1/#comment-516</link>
		<dc:creator>StuFF mc</dc:creator>
		<pubDate>Sat, 13 Mar 2010 11:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=172#comment-516</guid>
		<description>Great post! But &quot;MacRuby actually adds this syntax to Ruby&quot; isn&#039;t very true. As far as I know, named parameter (actually a hash of params) is a Ruby 1.9 feature, nothing to do with MacRuby. Once again, AFAIK.</description>
		<content:encoded><![CDATA[<p>Great post! But &#8220;MacRuby actually adds this syntax to Ruby&#8221; isn&#8217;t very true. As far as I know, named parameter (actually a hash of params) is a Ruby 1.9 feature, nothing to do with MacRuby. Once again, AFAIK.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

