mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rubygems: Update to RubyGems master 0a3814b. Changes:
Fixed extension directory in Gem::Specification#require_paths. Allow installation of gems when $HOME is nonexistent or unwritable. Use proper API in InstallCommand. Improve support for path option in gem dependency files. Remove warnings. * test/rubygems: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9f9b476710
commit
08aa6d59a2
17 changed files with 165 additions and 116 deletions
|
@ -135,7 +135,7 @@ to write the specification by hand. For example:
|
|||
def execute
|
||||
if gf = options[:gemdeps] then
|
||||
install_from_gemdeps gf
|
||||
return
|
||||
return # not reached
|
||||
end
|
||||
|
||||
@installed_specs = []
|
||||
|
@ -151,7 +151,7 @@ to write the specification by hand. For example:
|
|||
|
||||
show_installed
|
||||
|
||||
raise Gem::SystemExitException, exit_code
|
||||
terminate_interaction exit_code
|
||||
end
|
||||
|
||||
def install_from_gemdeps gf # :nodoc:
|
||||
|
@ -173,7 +173,7 @@ to write the specification by hand. For example:
|
|||
|
||||
@installed_specs = specs
|
||||
|
||||
raise Gem::SystemExitException, 0
|
||||
terminate_interaction
|
||||
end
|
||||
|
||||
def install_gem name, version # :nodoc:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue