Skip to content

Commit c7f1d2f

Browse files
committed
Update history for #566
Fix nodoc
1 parent 4a97046 commit c7f1d2f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

History.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Minor enhancements:
5757
Robert Kenny.
5858
* RubyGems now suggests how to fix permission errors. Pull request #553 by
5959
Odin Dutton.
60+
* Added support for installing a gem as default gems for alternate ruby
61+
implementations. Pull request #566 by Charles Nutter.
6062

6163
Bug fixes:
6264

Manifest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ lib/rubygems/ext/rake_builder.rb
8080
lib/rubygems/gem_runner.rb
8181
lib/rubygems/gemcutter_utilities.rb
8282
lib/rubygems/indexer.rb
83+
lib/rubygems/install_default_message.rb
8384
lib/rubygems/install_message.rb
8485
lib/rubygems/install_update_options.rb
8586
lib/rubygems/installer.rb
@@ -213,7 +214,6 @@ test/rubygems/test_gem_commands_owner_command.rb
213214
test/rubygems/test_gem_commands_pristine_command.rb
214215
test/rubygems/test_gem_commands_push_command.rb
215216
test/rubygems/test_gem_commands_query_command.rb
216-
test/rubygems/test_gem_commands_search_command.rb
217217
test/rubygems/test_gem_commands_server_command.rb
218218
test/rubygems/test_gem_commands_setup_command.rb
219219
test/rubygems/test_gem_commands_sources_command.rb

lib/rubygems.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,7 @@ def self.ensure_default_gem_subdirectories dir = Gem.dir, mode = nil
412412
ensure_subdirectories(dir, mode, REPOSITORY_DEFAULT_GEM_SUBDIRECTORIES)
413413
end
414414

415-
# :nodoc:
416-
def self.ensure_subdirectories dir, mode, subdirs
415+
def self.ensure_subdirectories dir, mode, subdirs # :nodoc:
417416
old_umask = File.umask
418417
File.umask old_umask | 002
419418

0 commit comments

Comments
 (0)