<?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: OSX, RubyGems and cross-thread violations in rb_gc</title>
	<atom:link href="http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/</link>
	<description>An Ordinary Web Developer's Blog</description>
	<lastBuildDate>Wed, 18 Jan 2012 22:55:11 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pete Campbell</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-145556</link>
		<dc:creator>Pete Campbell</dc:creator>
		<pubDate>Thu, 28 Jul 2011 19:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-145556</guid>
		<description>Good explanation, but you might want to mention that the offending Gem(s) may also be in vendor/gems or vendor/cache (with Bundler). http://petecampbell.wordpress.com/2011/07/28/cross-thread-violations-on-rb_gc-vendored-gems-eek/</description>
		<content:encoded><![CDATA[<p>Good explanation, but you might want to mention that the offending Gem(s) may also be in vendor/gems or vendor/cache (with Bundler). <a href="http://petecampbell.wordpress.com/2011/07/28/cross-thread-violations-on-rb_gc-vendored-gems-eek/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/petecampbell.wordpress.com/2011/07/28/cross-thread-violations-on-rb_gc-vendored-gems-eek/?referer=');">http://petecampbell.wordpress.com/2011/07/28/cross-thread-violations-on-rb_gc-vendored-gems-eek/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-127278</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Sun, 26 Sep 2010 20:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-127278</guid>
		<description>Thanks, the command of Rolf worked for me (just be careful with your CMS, it changes the normal quotes to smart quotes, Terminal doesn&#039;t like those).</description>
		<content:encoded><![CDATA[<p>Thanks, the command of Rolf worked for me (just be careful with your CMS, it changes the normal quotes to smart quotes, Terminal doesn&#8217;t like those).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Lubow</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-123130</link>
		<dc:creator>Eric Lubow</dc:creator>
		<pubDate>Thu, 08 Jul 2010 00:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-123130</guid>
		<description>This was really helpful.  Saved me what would likely have been hours.  Thanks.</description>
		<content:encoded><![CDATA[<p>This was really helpful.  Saved me what would likely have been hours.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xavier Shay</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-115753</link>
		<dc:creator>Xavier Shay</dc:creator>
		<pubDate>Wed, 05 Aug 2009 01:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-115753</guid>
		<description>to pipe it you need xargs:

ls -1 **/**/*.bundle&#124;ruby -pe &#039;$_.gsub! /\-.*/, &quot;&quot;&#039;&#124;uniq &#124; xargs sudo gem install 

if you&#039;re in a rush, you can speed it up a bit by passing --no-rdoc and --no-ri options to gem install.</description>
		<content:encoded><![CDATA[<p>to pipe it you need xargs:</p>
<p>ls -1 **/**/*.bundle|ruby -pe &#8216;$_.gsub! /\-.*/, &#8220;&#8221;&#8216;|uniq | xargs sudo gem install </p>
<p>if you&#8217;re in a rush, you can speed it up a bit by passing &#8211;no-rdoc and &#8211;no-ri options to gem install.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rolf Bjaanes</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-115170</link>
		<dc:creator>Rolf Bjaanes</dc:creator>
		<pubDate>Fri, 31 Jul 2009 23:42:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-115170</guid>
		<description>try this instead to find all the gems:

ruby -rubygems -e &#039;p Gem.source_index.find_all { &#124;n,s&#124; !s.extensions.empty? }.map { &#124;n,s&#124; [s.name, s.version.to_s] }&#039;</description>
		<content:encoded><![CDATA[<p>try this instead to find all the gems:</p>
<p>ruby -rubygems -e &#8216;p Gem.source_index.find_all { |n,s| !s.extensions.empty? }.map { |n,s| [s.name, s.version.to_s] }&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shyam</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-113386</link>
		<dc:creator>shyam</dc:creator>
		<pubDate>Mon, 13 Jul 2009 08:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-113386</guid>
		<description>I get following errors while going through your insrtuction:
gems $ ls -1 **/**/*.bundle&#124;ruby -pe ‘$_.gsub! /\-.*/, “”‘&#124;uniq
-e:1: Invalid char `\342&#039; in expression
-e:1: Invalid char `\200&#039; in expression
-e:1: Invalid char `\230&#039; in expression
-e:1: syntax error, unexpected &#039;.&#039;
‘.gsub!
    ^
Please suggest me</description>
		<content:encoded><![CDATA[<p>I get following errors while going through your insrtuction:<br />
gems $ ls -1 **/**/*.bundle|ruby -pe ‘$_.gsub! /\-.*/, “”‘|uniq<br />
-e:1: Invalid char `\342&#8242; in expression<br />
-e:1: Invalid char `\200&#8242; in expression<br />
-e:1: Invalid char `\230&#8242; in expression<br />
-e:1: syntax error, unexpected &#8216;.&#8217;<br />
‘.gsub!<br />
    ^<br />
Please suggest me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance</title>
		<link>http://blog.ubrio.us/nix/osx-rubygems-and-cross-thread-violations-in-rb_gc/comment-page-1/#comment-110621</link>
		<dc:creator>Lance</dc:creator>
		<pubDate>Tue, 02 Jun 2009 04:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ubrio.us/?p=104#comment-110621</guid>
		<description>thanks man, this really helped me out.

Cheers</description>
		<content:encoded><![CDATA[<p>thanks man, this really helped me out.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

