2013-11-10 17:51:40 +00:00
|
|
|
##
|
2013-11-19 00:34:13 +00:00
|
|
|
# A GitSpecification represents a gem that is sourced from a git repository
|
|
|
|
# and is being loaded through a gem dependencies file through the +git:+
|
2013-11-10 17:51:40 +00:00
|
|
|
# option.
|
2013-10-18 01:57:00 +00:00
|
|
|
|
2013-11-19 00:34:13 +00:00
|
|
|
class Gem::Resolver::GitSpecification < Gem::Resolver::SpecSpecification
|
2013-10-18 01:57:00 +00:00
|
|
|
|
|
|
|
def == other # :nodoc:
|
|
|
|
self.class === other and
|
|
|
|
@set == other.set and
|
2013-11-10 17:51:40 +00:00
|
|
|
@spec == other.spec and
|
|
|
|
@source == other.source
|
2013-10-18 01:57:00 +00:00
|
|
|
end
|
|
|
|
|
2013-11-25 19:14:49 +00:00
|
|
|
##
|
|
|
|
# Installing a git gem only involves building the extensions and generating
|
|
|
|
# the executables.
|
|
|
|
|
|
|
|
def install options
|
|
|
|
require 'rubygems/installer'
|
|
|
|
|
|
|
|
installer = Gem::Installer.new '', options
|
|
|
|
installer.spec = spec
|
|
|
|
|
|
|
|
yield installer if block_given?
|
|
|
|
|
|
|
|
installer.run_pre_install_hooks
|
|
|
|
installer.build_extensions
|
|
|
|
installer.run_post_build_hooks
|
|
|
|
installer.generate_bin
|
|
|
|
installer.run_post_install_hooks
|
|
|
|
end
|
|
|
|
|
2013-10-18 01:57:00 +00:00
|
|
|
end
|
|
|
|
|