summaryrefslogtreecommitdiff
path: root/instruby.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-04 08:07:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-04 08:07:22 +0000
commit6754cad8e9dc6db89f07d3df378fa124fae70944 (patch)
tree63b858e2377c62dc8037d0dfbe83c2422f4ba6f1 /instruby.rb
parentef7057fe2f7634a91052e1bed39001c05fc34744 (diff)
* lib/rubygems.rb (Gem.set_home, Gem.set_paths): should not create
directories stealthily. [ruby-core:20990] * lib/rubygems.rb (Gem.find_home): expand_path deals with platform dependent envirionments. * lib/rdoc/ri/paths.rb (RDoc::HOMEDIR): ditto. * instruby.rb (gem): creates gem directories at installation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rwxr-xr-xinstruby.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/instruby.rb b/instruby.rb
index 38ed40c52b..ea9ef2a582 100755
--- a/instruby.rb
+++ b/instruby.rb
@@ -409,6 +409,13 @@ install?(:local, :comm, :man) do
end
end
+install?(:local, :comm, :gem) do
+ puts "creating default gem directories"
+
+ gpath = Gem.default_dir
+ makedirs Gem::DIRECTORIES.collect {|dir| File.join(gpath, dir)}
+end
+
$install << :local << :ext if $install.empty?
$install.each do |inst|
if !(procs = $install_procs[inst]) || procs.empty?