<?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: Using Bundler in Real Life</title>
	<atom:link href="http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/feed/" rel="self" type="application/rss+xml" />
	<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/</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: cec</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-22668</link>
		<dc:creator>cec</dc:creator>
		<pubDate>Fri, 06 May 2011 15:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-22668</guid>
		<description><![CDATA[Hi, thank you for this post about workflows with bundler!
However, I&#039;m missing how to deal with locking when deploying in situations where some gems are in the development group, but not in the production group and vice-versa.
After deploying the app with capistrano, I find myself connecting to my production box, removing the gemfile.lock and running bundle install --without development.
Given how sharp and clear the organization of your projects is, I&#039;m certain that I&#039;m missing some fundamental concepts...]]></description>
		<content:encoded><![CDATA[<p>Hi, thank you for this post about workflows with bundler!<br />
However, I&#8217;m missing how to deal with locking when deploying in situations where some gems are in the development group, but not in the production group and vice-versa.<br />
After deploying the app with capistrano, I find myself connecting to my production box, removing the gemfile.lock and running bundle install &#8211;without development.<br />
Given how sharp and clear the organization of your projects is, I&#8217;m certain that I&#8217;m missing some fundamental concepts&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: todd</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18466</link>
		<dc:creator>todd</dc:creator>
		<pubDate>Wed, 24 Feb 2010 13:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18466</guid>
		<description><![CDATA[when i &quot;bundle install --disable-shared-gems&quot;  All the gems are installed from system gems, shouldn&#039;t this force the gem repo into my application... the concern is having to rely on the environment for things like

which unicorn_rails

where as before it could be known that unicorn_rails would always be in the APP_ROOT/bin

Make sense?]]></description>
		<content:encoded><![CDATA[<p>when i &#8220;bundle install &#8211;disable-shared-gems&#8221;  All the gems are installed from system gems, shouldn&#8217;t this force the gem repo into my application&#8230; the concern is having to rely on the environment for things like</p>
<p>which unicorn_rails</p>
<p>where as before it could be known that unicorn_rails would always be in the APP_ROOT/bin</p>
<p>Make sense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lauck</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18409</link>
		<dc:creator>John Lauck</dc:creator>
		<pubDate>Thu, 18 Feb 2010 03:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18409</guid>
		<description><![CDATA[Similar to @BradGessler&#039;s question: How do you handle multiple developers working on a project?  It seems common that developers could use different gems in their dev environments.  Database systems are the first that come to mind.  Some developer might use sqlite while another uses mysql.]]></description>
		<content:encoded><![CDATA[<p>Similar to @BradGessler&#8217;s question: How do you handle multiple developers working on a project?  It seems common that developers could use different gems in their dev environments.  Database systems are the first that come to mind.  Some developer might use sqlite while another uses mysql.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Van Dyk</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18399</link>
		<dc:creator>Joe Van Dyk</dc:creator>
		<pubDate>Tue, 16 Feb 2010 23:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18399</guid>
		<description><![CDATA[Is there a recommended way to deploy apps that use bundler?  Hopefully bundler 1.0 will come with some capistrano recipes or something.]]></description>
		<content:encoded><![CDATA[<p>Is there a recommended way to deploy apps that use bundler?  Hopefully bundler 1.0 will come with some capistrano recipes or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Gessler</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18396</link>
		<dc:creator>Brad Gessler</dc:creator>
		<pubDate>Tue, 16 Feb 2010 19:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18396</guid>
		<description><![CDATA[Hey folks, Brad from Poll Everywhere here. We&#039;re upgrading to bundler 0.9.5 and ran into a questions using Bundler with git.

First, should the .bundle folder be ignored? If so, there is an issue when another developer pulls a project and runs &#039;bundle install&#039;. The bundler gets to the end of the install process and blows up because .bundle/environment.rb is not found. The error messaging isn&#039;t very clear around this problem either, but a &#039;bundle lock&#039; command fixes it since the generates the .bundle folder. I&#039;m positive that .bundle should be ignored in .git because it contains absolute paths to the gem files, so the bundle install command should probably generate this file if its not present.]]></description>
		<content:encoded><![CDATA[<p>Hey folks, Brad from Poll Everywhere here. We&#8217;re upgrading to bundler 0.9.5 and ran into a questions using Bundler with git.</p>
<p>First, should the .bundle folder be ignored? If so, there is an issue when another developer pulls a project and runs &#8216;bundle install&#8217;. The bundler gets to the end of the install process and blows up because .bundle/environment.rb is not found. The error messaging isn&#8217;t very clear around this problem either, but a &#8216;bundle lock&#8217; command fixes it since the generates the .bundle folder. I&#8217;m positive that .bundle should be ignored in .git because it contains absolute paths to the gem files, so the bundle install command should probably generate this file if its not present.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mgutz</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18384</link>
		<dc:creator>mgutz</dc:creator>
		<pubDate>Mon, 15 Feb 2010 21:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18384</guid>
		<description><![CDATA[Is there any talk of integrating Bundler into rubygems? Using a Gemfile instead of .gemspec for dependencies would provide consistency when creating either an app or a gem. IMHO, Bundler is gem++.

gem check --gemfile
gem install --gemfile
...]]></description>
		<content:encoded><![CDATA[<p>Is there any talk of integrating Bundler into rubygems? Using a Gemfile instead of .gemspec for dependencies would provide consistency when creating either an app or a gem. IMHO, Bundler is gem++.</p>
<p>gem check &#8211;gemfile<br />
gem install &#8211;gemfile<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UnderpantsGnome</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18319</link>
		<dc:creator>UnderpantsGnome</dc:creator>
		<pubDate>Thu, 11 Feb 2010 14:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18319</guid>
		<description><![CDATA[@sven, @christian - rvm may be able to help you with this scenario to some extent. If not out of the box and you can make a decent case for it Wayne would probably help you get it added. He&#039;s been tremendously helpful.

http://rvm.beginrescueend.com/]]></description>
		<content:encoded><![CDATA[<p>@sven, @christian &#8211; rvm may be able to help you with this scenario to some extent. If not out of the box and you can make a decent case for it Wayne would probably help you get it added. He&#8217;s been tremendously helpful.</p>
<p><a href="http://rvm.beginrescueend.com/" rel="nofollow">http://rvm.beginrescueend.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry Sprock</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18307</link>
		<dc:creator>Larry Sprock</dc:creator>
		<pubDate>Wed, 10 Feb 2010 23:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18307</guid>
		<description><![CDATA[No amount of hackery or tom foolery has made it work for me in rails 2.3.x on a fresh app or otherwise... So seems there is still much work to be done before 1.0. I was and will continue to use 0.8.1 until then.]]></description>
		<content:encoded><![CDATA[<p>No amount of hackery or tom foolery has made it work for me in rails 2.3.x on a fresh app or otherwise&#8230; So seems there is still much work to be done before 1.0. I was and will continue to use 0.8.1 until then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christiaan</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18281</link>
		<dc:creator>Christiaan</dc:creator>
		<pubDate>Wed, 10 Feb 2010 11:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18281</guid>
		<description><![CDATA[@SvenFuchs This I would like to know also.]]></description>
		<content:encoded><![CDATA[<p>@SvenFuchs This I would like to know also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Bronson</title>
		<link>http://yehudakatz.com/2010/02/09/using-bundler-in-real-life/comment-page-1/#comment-18261</link>
		<dc:creator>Scott Bronson</dc:creator>
		<pubDate>Wed, 10 Feb 2010 03:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://yehudakatz.com/?p=431#comment-18261</guid>
		<description><![CDATA[Won&#039;t bundle unlock; bundle lock update ALL gems in my project to the latest gems on my system?  Seems a bit scarier of an operation than you imply.

Bundler rocks BTW.  Handling gems in complex Rails apps used to be a real problem.]]></description>
		<content:encoded><![CDATA[<p>Won&#8217;t bundle unlock; bundle lock update ALL gems in my project to the latest gems on my system?  Seems a bit scarier of an operation than you imply.</p>
<p>Bundler rocks BTW.  Handling gems in complex Rails apps used to be a real problem.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
