<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Segment7: RubyGems 1.0.0</title>
    <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>The Blog</description>
    <item>
      <title>RubyGems 1.0.0</title>
      <description>&lt;p&gt;Release 1.0.0 fixes several bugs.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;NOTE&lt;/span&gt;:  There is a bug installing on Ruby 1.8.5 and earlier.  I will fix this tomorrow.&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Major New Features Include:&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;RubyGems warns about various problems with gemspecs during gem building
&lt;li&gt;More-consistent versioning for the RubyGems software
&lt;/ul&gt;

	&lt;p&gt;Other Changes Include:&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;Fixed various bugs and problems with installing gems on Windows
&lt;li&gt;Fixed using &lt;kbd&gt;gem server&lt;/kbd&gt; for installing gems
&lt;li&gt;Various operations are even more verbose with&amp;#8212;verbose
&lt;li&gt;Built gems are now backwards compatible with 0.9.4
&lt;li&gt;Improved detection of &lt;span class="caps"&gt;RUBYOPT&lt;/span&gt; loading rubygems
&lt;li&gt;&lt;kbd&gt;ruby setup.rb&lt;/kbd&gt; now has a&amp;#8212;help option
&lt;li&gt;Gem::Specification#bindir is now respected on installation
&lt;li&gt;Executable stubs can now be installed to match ruby&amp;#8217;s name, so if ruby is
    installed as &amp;#8216;ruby18&amp;#8217;, foo_exec will be installed as &amp;#8216;foo_exec18&amp;#8217;
&lt;li&gt;&lt;kbd&gt;gem unpack&lt;/kbd&gt; can now unpack into a specific directory with&amp;#8212;target
&lt;li&gt;OpenSSL is no longer required by default
&lt;/ul&gt;

	&lt;p&gt;Deprecations and Deletions:&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;Kernel#require_gem has been removed
&lt;li&gt;Executables without a shebang will not be wrapped in a future version, this
    may cause such executables to fail to operate on installation
&lt;li&gt;Gem::Platform constants other than &lt;span class="caps"&gt;RUBY&lt;/span&gt; and &lt;span class="caps"&gt;CURRENT&lt;/span&gt; have been removed
&lt;li&gt;Gem::RemoteInstaller was removed
&lt;li&gt;Gem::Specification#test_suite_file and #test_suite_file= are deprecated in
    favor of #test_file and #test_file=
&lt;li&gt;Gem::Specification#autorequire= has been deprecated
&lt;li&gt;Time::today will be removed in a future version
&lt;/ul&gt;

&lt;h3&gt;How can I get RubyGems?&lt;/h3&gt;

	&lt;p&gt;&lt;span class="caps"&gt;NOTE&lt;/span&gt;:  If you have installed RubyGems using a package you may want to install a
new RubyGems through the same packaging system.&lt;/p&gt;


	&lt;p&gt;If you have a recent version of RubyGems (0.8.5 or later), then all
you need to do is:&lt;/p&gt;


&lt;pre&gt;&lt;kbd&gt;gem update --system   (you might need to be admin/root)&lt;/kbd&gt;&lt;/pre&gt;

	&lt;p&gt;(Note: You may have to run the command twice if you have any previosly
installed rubygems-update gems).&lt;/p&gt;


	&lt;p&gt;If you have an older version of RubyGems installed, then you can still
do it in two steps:&lt;/p&gt;


&lt;pre&gt;&lt;kbd&gt;gem install rubygems-update  (again, might need to be admin/root)
update_rubygems              (... here too)&lt;/kbd&gt;&lt;/pre&gt;

	&lt;p&gt;If you don&amp;#8217;t have any gems install, there is still the pre-gem
approach to getting software &amp;#8230; doing it manually:&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;&lt;span class="caps"&gt;DOWNLOAD FROM&lt;/span&gt;: &lt;a href="http://rubyforge.org/frs/?group_id=126"&gt;http://rubyforge.org/frs/?group_id=126&lt;/a&gt;
&lt;li&gt;&lt;span class="caps"&gt;UNPACK INTO A DIRECTORY AND CD THERE&lt;/span&gt;
&lt;li&gt;&lt;span class="caps"&gt;INSTALL WITH&lt;/span&gt;:  ruby setup.rb  (you may need admin/root privilege)
&lt;/ul&gt;

&lt;h3&gt;Thanks&lt;/h3&gt;

	&lt;p&gt;Keep those gems coming!&lt;/p&gt;
</description>
      <pubDate>Thu, 20 Dec 2007 00:32:58 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:326fbde2-e49a-4a15-b6e4-587c06e8059f</guid>
      <author>drbrain@segment7.net (Eric Hodel)</author>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0</link>
      <category>Rubygems</category>
      <category>Software</category>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Hodel</title>
      <description>&lt;p&gt;@DGM: Kernel#require_gem has been deprecated for 17 or 18 months now, which is certainly plenty of time.  It&amp;#8217;s not my fault if authors fail to heed the warnings given them.&lt;/p&gt;


	&lt;p&gt;There would still be complainers if I removed it six or even 12 months from now.&lt;/p&gt;


	&lt;p&gt;It&amp;#8217;s not a &amp;#8220;major pain&amp;#8221; to switch away from Kernel#require_gem.  Deleting the line and replacing it with regular Kernel#require of the appropriate file or files is all it takes.&lt;/p&gt;


	&lt;p&gt;If you want to continue to use Kernel#require_gem, use RubyGems 0.9.5, which is hardly different, or RubyGems 0.9.4.&lt;/p&gt;</description>
      <pubDate>Sat, 29 Dec 2007 00:30:21 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:86abda67-ecda-45dd-a693-d57b7e48f0de</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-844</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by DGM</title>
      <description>&lt;p&gt;@Eric:  &amp;#8220;Kernel#require_gem was never aliased to Kernel#gem. The two methods did different things. Kernel#require_gem has been complaining about deprecation for 11 months. There’s been plenty of time for authors to fix their code.&amp;#8221;&lt;/p&gt;


	&lt;p&gt;Ahem.  That is, only if you have been doing any development for the last year.  I just came back to work on a project that was completed a year ago &amp;#8211; and now it won&amp;#8217;t run.  This is going to be a major pain just to get everything updated to work again, much less add the features I was hired to do. :/&lt;/p&gt;


	&lt;p&gt;11 months is not really &amp;#8220;plenty of time&amp;#8221;.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Dec 2007 09:02:56 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:adc60bbc-67f0-42b9-870b-056232c7b89f</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-843</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Mark Wilden</title>
      <description>&lt;p&gt;Thanks, Eric. I noticed other folks talking about issues, so I thought I&amp;#8217;d sneak mine in.&lt;/p&gt;


	&lt;p&gt;My ruby has been in Program Files for a few months, without problem. In the process of updating to 2.0.2, however, I ran across other problems with the space in the folder name, so I bit the bullet and went back to c:\ruby.&lt;/p&gt;


	&lt;p&gt;It&amp;#8217;s too bad. I&amp;#8217;ve been using &amp;#8220;advanced&amp;#8221; file names for 12 years. Currently, ruby (or parts thereof) is the only software I have that can&amp;#8217;t handle them.&lt;/p&gt;


	&lt;p&gt;///ark&lt;/p&gt;</description>
      <pubDate>Mon, 24 Dec 2007 10:28:19 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:407d80f1-21ff-4536-84b9-c4b3a6e47610</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-842</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Hodel</title>
      <description>&lt;p&gt;Mark: The proper place to file bugs or patches is on the tracker, but you won&amp;#8217;t get very far fixing this one.  Many gems don&amp;#8217;t like paths with spaces on Windows.&lt;/p&gt;


	&lt;p&gt;Don&amp;#8217;t let that discourage you though, I&amp;#8217;d welcome such a patch.&lt;/p&gt;</description>
      <pubDate>Sun, 23 Dec 2007 17:46:11 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:eb98c7ff-9a45-4a23-b81f-483d35eec772</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-838</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Mark Wilden</title>
      <description>&lt;p&gt;Yes, I know what the problem is, raggi &amp;#8211; I was just wondering if/when it was going to get fixed. Of course, I plan to look at it myself when I get a chance &amp;#8211; it&amp;#8217;s gotta be an easy fix.&lt;/p&gt;


	&lt;p&gt;///ark&lt;/p&gt;</description>
      <pubDate>Sat, 22 Dec 2007 20:15:44 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:32d6b825-2bae-441f-9e50-bf75f983d124</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-837</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by raggi</title>
      <description>&lt;p&gt;Mark Wilden &amp;#8211; That&amp;#8217;s a command being spawned in a subshell, that hasn&amp;#8217;t been escaped properly. On windows, all commands with paths or names containing spaces, require escaping by surrounding them with quotation marks. Double quotes at that. Neither backslash, nor single quotes will work reliably.&lt;/p&gt;


	&lt;p&gt;In my experience, there are a lot of libraries which do not do this properly, as such I really can&amp;#8217;t recommend running ruby in a directory that contains spaces, at least for the time being.&lt;/p&gt;


	&lt;p&gt;Makefiles and subshell called commands become even more of a nightmare in this regard, as can installing on a different drive (due to the often poor choice of handling of &amp;#8217;/&amp;#8217; in the MSVCRT and other libs (or the incorrect perception that this is an absolute path)).&lt;/p&gt;


	&lt;p&gt;For the record, it is also worth noting that when executing binaries in this manner, an unescaped command will actually search each of the possibilities, and if one is found, it will then pass the remaining portion of the command as arguments to the command. This was previously abused by malware in order to intercept poorly written command line calls. (I only point this out, as essentially, not dealing with command line calls properly, is in fact a security issue on Windows).&lt;/p&gt;</description>
      <pubDate>Sat, 22 Dec 2007 18:23:01 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:6139da05-4e28-4ef5-b8a7-4782046fbb81</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-836</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Mark Wilden</title>
      <description>&lt;p&gt;Nothing about the problem I mentioned?&lt;/p&gt;


	&lt;p&gt;///ark&lt;/p&gt;</description>
      <pubDate>Sat, 22 Dec 2007 14:20:40 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:58f35a5f-338e-4d48-a453-c5c77bb12268</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-835</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Hodel</title>
      <description>&lt;p&gt;Just require the file you need.  You only need to use Kernel#gem when you need a specific version of a gem.&lt;/p&gt;</description>
      <pubDate>Fri, 21 Dec 2007 13:29:32 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:5f02ee42-3802-4e41-a7f7-148cd744af7d</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-832</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Kris Nuttycombe</title>
      <description>&lt;blockquote&gt;Kernel#require_gem was never aliased to Kernel#gem. The two methods did different things. Kernel#require_gem has been complaining about deprecation for 11 months. There’s been plenty of time for authors to fix their code.&lt;/blockquote&gt;

	&lt;p&gt;The problem with this is that there are lots of Rails plugins and such that are older than 11 months that are unmaintained but still in use. From experience, just changing &amp;#8220;require_gem&amp;#8221; to &amp;#8220;gem&amp;#8221; in these often results in them not working at all. Can you suggest a migration path?&lt;/p&gt;</description>
      <pubDate>Fri, 21 Dec 2007 10:46:26 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:50c00c16-cbe1-497a-93eb-d52686772850</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-831</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Mark Wilden</title>
      <description>&lt;p&gt;gem update&amp;#8212;system seems to be working, but then errors with&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;'c:/Program' is not recognized as an internal or external command&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;I&amp;#8217;m on Windows and yes, my ruby folder is under \Program Files.&lt;/p&gt;


	&lt;p&gt;&amp;gt; NOTE: If you have installed RubyGems using a package 
&amp;gt; you may want to install a new RubyGems through the
&amp;gt; same packaging system.&lt;/p&gt;


	&lt;p&gt;I never know what to do when I see a message like this. :) The message doesn&amp;#8217;t give me any information that would help me choose one way or another.&lt;/p&gt;


	&lt;p&gt;///ark&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 18:56:01 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:a9b1aa30-59b2-4ae6-beca-69cf9779b9b1</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-828</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Hodel</title>
      <description>&lt;p&gt;@Eric Beland: The release announcement above, before all of the installation/update instructions, has the following:&lt;/p&gt;


&lt;blockquote&gt;NOTE: If you have installed RubyGems using a package you may want to install a new RubyGems through the same packaging system.&lt;/blockquote&gt;

	&lt;p&gt;@gmarik: Kernel#require_gem was never aliased to Kernel#gem.  The two methods did different things.  Kernel#require_gem has been complaining about deprecation for 11 months.  There&amp;#8217;s been plenty of time for authors to fix their code.&lt;/p&gt;


	&lt;p&gt;@mike:  See the note at the top of this post.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 18:29:42 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:1e9b0664-58cb-4054-a2ff-88ad9d4a3041</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-827</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Beland</title>
      <description>&lt;p&gt;Hi Luis,&lt;/p&gt;


	&lt;p&gt;I did the update via gem update&amp;#8212;system initially not knowing this would cause problems. For people starting with a packaged image, it&amp;#8217;s not always clear how the image was &amp;#8220;made.&amp;#8221; Also, I was unaware of this mysterious limitation which was apparently addressed in an irc chat room somewhere. I hope the Vogon construction plans for a space-bypass through planet earth are not also on Display in ruby-talk (Hitchhiker&amp;#8217;s Guide reference). It was only after trying to update via rubygems that I got the error and then tried other install/uninstall methods (apt-get) in an effort to repair things. It&amp;#8217;s strange to not be able to upgrade via gem update&amp;#8212;system when it seems the only thing needed to make it work was to change one file. Anyhow, I will avoid &amp;#8220;mixing methods&amp;#8221; (and mixing liquor and beer) in the future. If it could be detected whether the version is from a package, a warning would have been nice rather than blaming the victim.&lt;/p&gt;


	&lt;p&gt;Eric&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 17:33:55 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:041e0734-0a38-4261-8107-163d5b8c8bfb</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-826</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by mike</title>
      <description>&lt;p&gt;When update on a win32 ruby 1.8.4, the update_rubygems fires the following exception.&lt;/p&gt;


	&lt;p&gt;Installing RubyGems 1.0.0
./lib/rubygems.rb:77: uninitialized constant Gem::RbConfig (NameError)
        from setup.rb:19&lt;/p&gt;


	&lt;p&gt;Due to some file corrupt on rubyforge?&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 17:25:14 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:a7d90f46-c27d-476f-a7e4-0882387b6646</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-825</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Warren</title>
      <description>&lt;p&gt;Luis,&lt;/p&gt;


	&lt;p&gt;Thanks for the confirmation, that&amp;#8217;s Excellent!  I must have done something wrong this morning when I upgraded to 1.0.0, as my mongrel server wouldn&amp;#8217;t fire up&amp;#8230; I&amp;#8217;ll clear out the gems and reinstall them&amp;#8230;&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 13:50:51 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:f5826035-3d1b-480f-a734-d7a45e6a19e4</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-824</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Luis Lavena</title>
      <description>&lt;p&gt;Eric Beland: you mixed installation meachinism. Then you broke it.&lt;/p&gt;


	&lt;p&gt;apt-get is a packaging method of Debian, gem update will try to update itself, which end breaking your &amp;#8216;apt&amp;#8217; environment.&lt;/p&gt;


	&lt;p&gt;This was longly discussed in ruby-talk. If you installed rubygems using apt-get, stick to it and wait for debian guys package the new version.&lt;/p&gt;


	&lt;p&gt;Any other case, apt-get remove and manually install it using ruby setup.rb install&lt;/p&gt;


	&lt;p&gt;I cannot help you more than that, sorry.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 11:23:32 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:cc91ad65-2135-4b74-a0be-02c5e5bed73b</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-823</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Eric Beland</title>
      <description>&lt;p&gt;On my Debian box I upgraded rubygems&amp;#8230;  Suddenly gem -v wouldn&amp;#8217;t work and threw uninitialized constant Gem::GemRunner.&lt;/p&gt;


	&lt;p&gt;Thinking the install may have been half-baked, I uninstalled, reinstalled, using apt-get. Kept getting v1.0 of RubyGems and the same error. Gave up and used nano to toss the line below into /usr/bin/gem&lt;/p&gt;


	&lt;p&gt;require &amp;#8216;rubygems/gem_runner&amp;#8217;&lt;/p&gt;


	&lt;p&gt;Haven&amp;#8217;t seen anyone else complaining about this so far.  Works for me now&amp;#8230;  Thoughts?&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 11:14:53 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:55a2f0e7-7feb-471b-9ab5-036d66b23826</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-822</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Luis Lavena</title>
      <description>&lt;p&gt;&lt;strong&gt;@Per&lt;/strong&gt;: Yes, you will no longer request to install mswin32 gems on any other platform that is not mswin32 (unless you force it).&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;@Warren&lt;/strong&gt;: Yes, Eric solved the issues with gems that uses &lt;em&gt;mswin32&lt;/em&gt; as platform (mongrel, hpricot, sqlite3-ruby, and many others).&lt;/p&gt;


	&lt;p&gt;So 1.0.0 is the best RubyGems you can upgrade to! :-)&lt;/p&gt;


	&lt;p&gt;HTH,&lt;/p&gt;


	&lt;p&gt;Luis&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 10:41:12 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:9ded2441-dc0b-4696-94dc-2e867e2eeb64</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-821</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by gmarik</title>
      <description>&lt;p&gt;2Jason: Yes, I&amp;#8217;d like to have it everywhere, all the time for now&amp;#8230;&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 09:44:17 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:c7958fc4-9c9f-46b2-8fbb-80d695cf985f</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-820</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Warren</title>
      <description>&lt;p&gt;Great work, Eric!&lt;/p&gt;


	&lt;p&gt;Does this release address the problems that 0.9.5 had with running mongrel on win32?&lt;/p&gt;


	&lt;p&gt;Thanks!&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 09:04:50 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:0717ddfc-2556-45d3-ad4c-0bc478b7efb2</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-819</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Per</title>
      <description>&lt;p&gt;Congratulations! But does it still ask if I want to install the win32 versions on Linux and Mac?&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 07:57:16 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:dc35233d-073d-4abe-b430-efef57efd0d8</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-818</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by Jason L Perry</title>
      <description>&lt;p&gt;gmarik, Can you alias it in your code yourself? Or, do you need it everywhere all the time?&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 07:17:57 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:c72d56d9-edb4-4cd4-9197-9780abfb0f34</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-817</link>
    </item>
    <item>
      <title>"RubyGems 1.0.0" by gmarik</title>
      <description>&lt;p&gt;Cool!
I updated but then downgraded back to 0.9.5 as i have old code which uses Kernel#require_gem.
Is there a way to upgrade to 1.0 but still have Kernel#require_gem aliased to Kernel#gem ?(say to have autoloaded legacy.rb with ruby which does the aliasing? )&lt;/p&gt;


	&lt;p&gt;Thanks!&lt;/p&gt;</description>
      <pubDate>Thu, 20 Dec 2007 05:32:53 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:d15e5f8e-c060-4634-8106-1879cd5efee6</guid>
      <link>http://blog.segment7.net/articles/2007/12/20/rubygems-1-0-0#comment-816</link>
    </item>
  </channel>
</rss>
