From: Eric Hodel Date: 2008-12-16T08:32:57+09:00 Subject: [ruby-core:20593] Re: [Fwd: [ruby-dev:37282] [Bug #827] Fix document for Gem::Installer#write_spec] On Dec 12, 2008, at 23:34 PM, Yugui (Yuki Sonoda) wrote: > okkez sent a patch for RubyGems to ruby-dev. He said that rdoc does > not > seem to have difference from implementation. > > -------- Original Message -------- > Subject: [ruby-dev:37282] [Bug #827] Fix document for > Gem::Installer#write_spec > Date: Fri, 05 Dec 2008 14:35:01 +0900 > From: okkez _ > Reply-To: ruby-dev@ruby-lang.org > To: ruby-dev@ruby-lang.org (ruby developers list) > > Bug #827: Fix document for Gem::Installer#write_spec > http://redmine.ruby-lang.org/issues/show/827 > > ���������: okkez _ > ���������������: Open, ���������: Normal > ������������: lib > > ��������������������������������������������������������������������� > ��������������������������������� > > Index: lib/rubygems/installer.rb > =================================================================== > --- lib/rubygems/installer.rb (revision 20439) > +++ lib/rubygems/installer.rb (working copy) > @@ -270,11 +270,7 @@ > end > > ## > - # Writes the .gemspec specification (in Ruby) to the supplied > - # spec_path. > - # > - # spec:: [Gem::Specification] The Gem specification to output > - # spec_path:: [String] The location (path) to write the gemspec to > + # Writes the .gemspec specification (in Ruby). > > def write_spec > rubycode = @spec.to_ruby I applied this patch to RubyGems repository: Index: lib/rubygems/installer.rb =================================================================== --- lib/rubygems/installer.rb (revision 1935) +++ lib/rubygems/installer.rb (working copy) @@ -270,11 +270,8 @@ class Gem::Installer end ## - # Writes the .gemspec specification (in Ruby) to the supplied - # spec_path. - # - # spec:: [Gem::Specification] The Gem specification to output - # spec_path:: [String] The location (path) to write the gemspec to + # Writes the .gemspec specification (in Ruby) to the gem home's + # specifications directory. def write_spec rubycode = @spec.to_ruby Should I make the change to 1_9_1 and trunk also?