Gem update on Windows - is it broken? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:52:02Zhttp://stackoverflow.com/feeds/question/134581http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken6Gem update on Windows - is it broken?Charles Roper2008-09-25T17:06:36Z2009-08-24T15:16:49Z
<p>This is a follow-up to <a href="http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension">this question</a>.</p>
<p>When I issue the <strong><code>gem update</code></strong> command on Windows, whenever it gets to a
gem whose latest version DOESN'T have Windows binaries, it'll attempt to
build the native extension which will, of course, fail. For example:</p>
<pre><code>Updating sqlite3-ruby
Building native extensions. This could take a while...
ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError)
ERROR: Failed to build gem native extension.
c:/ruby/bin/ruby.exe extconf.rb update
checking for fdatasync() in rt.lib... no
checking for sqlite3.h... no
nmake
'nmake' is not recognized as an internal or external command,
operable program or batch file.
</code></pre>
<p>The old pre-1.x behavior of asking for the required platform at least
made updating possible. Now I can't update at all unless I uninstall the
troublesome gems (currently sqlite3-ruby and hpricot), run the update,
then re-install the gems using the --version switch.</p>
<p>Does anyone have a solution to this conundrum or are we stuck with it?</p>
<p><hr /></p>
<p><strong>Note:</strong></p>
<pre><code>$ gem -v
1.2.0
$ ruby -v
ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]
</code></pre>
<p><hr /></p>
<p><strong>Note (26 September 2008):</strong> I just updated to gems 1.3.0 and this problem persists.</p>
<p><strong>Note (18 November 2008):</strong> Just updated to gems 1.3.1 and the problem persists.</p>
<p><strong>Note (28 April 2009):</strong> The latest version of Gems (<a href="http://blog.segment7.net/articles/2009/04/15/rubygems-1-3-2" rel="nofollow">1.3.2</a>) now skips any gems where building of native extensions fails during update; in other words, the problem is fixed. Hooray!</p>
http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken/136226#1362262Answer by hectorsq for Gem update on Windows - is it broken?hectorsq2008-09-25T21:21:06Z2008-09-25T21:21:06Z<p>It seems that we are stuck. I have found <a href="http://rubyforge.org/frs/?group_id=254" rel="nofollow">here</a> that there is no mswin32 gem for the last version (1.2.4), I tried to install it on my computer and got the same problem.</p>
<p>Installing the previous version works fine:</p>
<pre><code>gem install sqlite3-ruby --version '1.2.3'
</code></pre>
http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken/144510#1445102Answer by Charles Roper for Gem update on Windows - is it broken?Charles Roper2008-09-27T21:22:09Z2009-04-28T18:01:42Z<p>Gems, as of <a href="http://blog.segment7.net/articles/2009/04/15/rubygems-1-3-2" rel="nofollow">version 1.3.2</a>, will now skip gems that fail to build, so update Rubygems to the latest version and the problem discussed here should be solved.</p>
<pre><code>gem update --system
</code></pre>
<p><strong><em>The following solution is now deprecated, but I leave it here for the record.</em></strong></p>
<p>I <a href="http://www.ruby-forum.com/topic/166693" rel="nofollow">started a thread on this issue</a> on the Ruby Forum (it's a front end to the mailing list). There's some interesting discussion; it's worth a read. There's even a very hacky solution to this problem on there:</p>
<pre><code>`gem.bat outdated`.split(/\n/).map{|z|z.scan(/^[^[:space:]]+/)}.flatten.each{|z| `gem.bat update #{z}`}
</code></pre>
<p>It calls the <code>gem outdated</code> command and builds a list of all of the outdated gems. It then iterates over the list and calls <code>gem update</code> for each individual outdated gem. If one fails, it just moves onto the next.</p>
http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken/155882#1558821Answer by Alan Hecht for Gem update on Windows - is it broken?Alan Hecht2008-10-01T01:41:58Z2008-10-01T01:41:58Z<p>Looking at the <a href="http://rubyforge.org/frs/?group_id=254" rel="nofollow">RubyForge file list</a> for sqlite3-ruby reveals that version 1.2.3 has gems that were built using Visual Studio 6 and MinGW (sqlite3-ruby-1.2.3-mswin32.gem & sqlite3-ruby-1.2.3-x86-mingw32.gem). However, version 1.2.4 doesn't not have any such pre-built gems.</p>
<p>If you have Visual Studio 6 or <a href="http://www.mingw.org/" rel="nofollow">MinGW</a> installed and have the compiler environment variables set up (at least for Visual Studio 6 but not sure about MinGW), the gem should build during installation. I'm not sure if the gems will build under newer versions of Visual Studio.</p>