summaryrefslogtreecommitdiff
path: root/lib/rubygems/resolver/git_specification.rb
diff options
context:
space:
mode:
-rw-r--r--lib/rubygems/resolver/git_specification.rb26
1 files changed, 25 insertions, 1 deletions
@@ -12,11 +12,15 @@ class Gem::Resolver::GitSpecification < Gem::Resolver::SpecSpecification
@source == other.source
end
##
# Installing a git gem only involves building the extensions and generating
# the executables.
- def install options
require 'rubygems/installer'
installer = Gem::Installer.new '', options
@@ -31,5 +35,25 @@ class Gem::Resolver::GitSpecification < Gem::Resolver::SpecSpecification
installer.run_post_install_hooks
end
end