<?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: The How and Why of Bundler Groups</title>
	<atom:link href="http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/feed/" rel="self" type="application/rss+xml" />
	<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/</link>
	<description>Random Geek-Related Thoughts</description>
	<lastBuildDate>Sat, 20 Apr 2013 07:23:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anton</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-25984</link>
		<dc:creator>Anton</dc:creator>
		<pubDate>Thu, 17 Jan 2013 09:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-25984</guid>
		<description><![CDATA[Thanks for the info. This really sucks, I have to comment the production gems like mysql2 on my development machine every time (because the mysql2 can not be installed on OS X). Since the first mysql gem the JAR hell from Java has reached rails developers and there is no way out (like groups in the gemfile that would only be loaded on a given environment)...]]></description>
		<content:encoded><![CDATA[<p>Thanks for the info. This really sucks, I have to comment the production gems like mysql2 on my development machine every time (because the mysql2 can not be installed on OS X). Since the first mysql gem the JAR hell from Java has reached rails developers and there is no way out (like groups in the gemfile that would only be loaded on a given environment)&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Gorbikoff</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-22160</link>
		<dc:creator>Nick Gorbikoff</dc:creator>
		<pubDate>Thu, 13 Jan 2011 21:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-22160</guid>
		<description><![CDATA[@Adam Grant
That&#039;s wishful thinking. Currently having an issue with hpricot wanting to install Linux version on Windows unless you specify platform.]]></description>
		<content:encoded><![CDATA[<p>@Adam Grant<br />
That&#8217;s wishful thinking. Currently having an issue with hpricot wanting to install Linux version on Windows unless you specify platform.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khaja Minhajuddin</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-21885</link>
		<dc:creator>Khaja Minhajuddin</dc:creator>
		<pubDate>Wed, 15 Dec 2010 06:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-21885</guid>
		<description><![CDATA[@AlekSi: To install without multiple groups you need to use &quot;bundle install --without development test&quot;

(I know this is an old post, but just wanted to correct that for the future readers)]]></description>
		<content:encoded><![CDATA[<p>@AlekSi: To install without multiple groups you need to use &#8220;bundle install &#8211;without development test&#8221;</p>
<p>(I know this is an old post, but just wanted to correct that for the future readers)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Grant</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-21742</link>
		<dc:creator>Adam Grant</dc:creator>
		<pubDate>Wed, 24 Nov 2010 01:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-21742</guid>
		<description><![CDATA[@Jonathan:

I think RubyGems takes care of all that for you... &quot;gem install autotest-fsevent&quot; should figure out which platform you are on automatically, regardless of bundler. It&#039;s just a wrapper for RubyGems anyway. Also, use autowatchr for testing. Much simpler and configurable than autotest. It already hooks into fsevent. No Growl support yet though :( 

- Adam]]></description>
		<content:encoded><![CDATA[<p>@Jonathan:</p>
<p>I think RubyGems takes care of all that for you&#8230; &#8220;gem install autotest-fsevent&#8221; should figure out which platform you are on automatically, regardless of bundler. It&#8217;s just a wrapper for RubyGems anyway. Also, use autowatchr for testing. Much simpler and configurable than autotest. It already hooks into fsevent. No Growl support yet though :( </p>
<p>- Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Soeder</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-21736</link>
		<dc:creator>Jonathan Soeder</dc:creator>
		<pubDate>Sat, 13 Nov 2010 20:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-21736</guid>
		<description><![CDATA[Hi Yehuda,

I have a development team which uses linux, and mac.  The mac developers depend on autotest-fsevent and autotest-growl which have native dependencies on the mac.  

I thought to use the platforms option, but it doesn&#039;t include darwin.  It does include mswin though.

How would you suggest we go about working together smoothly? I&#039;m sure I&#039;m overlooking something obvious]]></description>
		<content:encoded><![CDATA[<p>Hi Yehuda,</p>
<p>I have a development team which uses linux, and mac.  The mac developers depend on autotest-fsevent and autotest-growl which have native dependencies on the mac.  </p>
<p>I thought to use the platforms option, but it doesn&#8217;t include darwin.  It does include mswin though.</p>
<p>How would you suggest we go about working together smoothly? I&#8217;m sure I&#8217;m overlooking something obvious</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bobics</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-19225</link>
		<dc:creator>bobics</dc:creator>
		<pubDate>Fri, 09 Jul 2010 00:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-19225</guid>
		<description><![CDATA[Thanks for the useful info.  A couple questions:
(1) Is --gemfile documented anywhere?  I didn&#039;t see this on http://gembundler.com/
(2) Why is there a command line switch for &quot;install&quot; but not &quot;require&quot;?  For example, on a production system I may want to install required gems via the command line without having to exclude everything else.  Or am I thinking about it wrong?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the useful info.  A couple questions:<br />
(1) Is &#8211;gemfile documented anywhere?  I didn&#8217;t see this on <a href="http://gembundler.com/" rel="nofollow">http://gembundler.com/</a><br />
(2) Why is there a command line switch for &#8220;install&#8221; but not &#8220;require&#8221;?  For example, on a production system I may want to install required gems via the command line without having to exclude everything else.  Or am I thinking about it wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Case</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-19213</link>
		<dc:creator>Tim Case</dc:creator>
		<pubDate>Wed, 30 Jun 2010 18:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-19213</guid>
		<description><![CDATA[Hi Yehuda, I have a Rails 2.3.8 app that I would like configure so that groups are opt-in.  Adding the following to my application.rb doesn&#039;t seem to make a difference &#039;Bundler.require(:default, Rails.env) if defined?(Bundler)&#039; does this only work in Rails 3?]]></description>
		<content:encoded><![CDATA[<p>Hi Yehuda, I have a Rails 2.3.8 app that I would like configure so that groups are opt-in.  Adding the following to my application.rb doesn&#8217;t seem to make a difference &#8216;Bundler.require(:default, Rails.env) if defined?(Bundler)&#8217; does this only work in Rails 3?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AlekSi</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-19200</link>
		<dc:creator>AlekSi</dc:creator>
		<pubDate>Fri, 18 Jun 2010 04:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-19200</guid>
		<description><![CDATA[Ok, it&#039;s &quot;--without test:development&quot;.]]></description>
		<content:encoded><![CDATA[<p>Ok, it&#8217;s &#8220;&#8211;without test:development&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AlekSi</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-19199</link>
		<dc:creator>AlekSi</dc:creator>
		<pubDate>Fri, 18 Jun 2010 04:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-19199</guid>
		<description><![CDATA[Yehuda, how to specify several --without groups? &quot;--without test --without development&quot; and &quot;--without test,development&quot; doesn&#039;t works.]]></description>
		<content:encoded><![CDATA[<p>Yehuda, how to specify several &#8211;without groups? &#8220;&#8211;without test &#8211;without development&#8221; and &#8220;&#8211;without test,development&#8221; doesn&#8217;t works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinicius B. Fuentes</title>
		<link>http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/comment-page-1/#comment-19019</link>
		<dc:creator>Vinicius B. Fuentes</dc:creator>
		<pubDate>Sun, 09 May 2010 23:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=482#comment-19019</guid>
		<description><![CDATA[Ahhhh! Now I finally understand! Thanks for this post!]]></description>
		<content:encoded><![CDATA[<p>Ahhhh! Now I finally understand! Thanks for this post!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
