2007-11-10 10:48:56 +03:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# The Builder class processes RubyGem specification files
|
|
|
|
# to produce a .gem file.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
class Gem::Builder
|
|
|
|
|
|
|
|
include Gem::UserInteraction
|
2007-11-10 10:48:56 +03:00
|
|
|
##
|
2009-06-10 01:38:59 +04:00
|
|
|
# Constructs a builder instance for the provided specification
|
2007-11-10 10:48:56 +03:00
|
|
|
#
|
2009-06-10 01:38:59 +04:00
|
|
|
# spec:: [Gem::Specification] The specification instance
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def initialize(spec)
|
|
|
|
require "yaml"
|
|
|
|
require "rubygems/package"
|
|
|
|
require "rubygems/security"
|
|
|
|
|
|
|
|
@spec = spec
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Builds the gem from the specification. Returns the name of the file
|
|
|
|
# written.
|
|
|
|
|
|
|
|
def build
|
|
|
|
@spec.mark_version
|
|
|
|
@spec.validate
|
|
|
|
@signer = sign
|
|
|
|
write_package
|
|
|
|
say success
|
|
|
|
@spec.file_name
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def success
|
|
|
|
<<-EOM
|
2007-11-10 10:48:56 +03:00
|
|
|
Successfully built RubyGem
|
|
|
|
Name: #{@spec.name}
|
|
|
|
Version: #{@spec.version}
|
|
|
|
File: #{@spec.full_name+'.gem'}
|
|
|
|
EOM
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
private
|
|
|
|
|
|
|
|
##
|
|
|
|
# If the signing key was specified, then load the file, and swap to the
|
|
|
|
# public key (TODO: we should probably just omit the signing key in favor of
|
|
|
|
# the signing certificate, but that's for the future, also the signature
|
|
|
|
# algorithm should be configurable)
|
|
|
|
|
|
|
|
def sign
|
|
|
|
signer = nil
|
|
|
|
|
|
|
|
if @spec.respond_to?(:signing_key) and @spec.signing_key then
|
|
|
|
signer = Gem::Security::Signer.new @spec.signing_key, @spec.cert_chain
|
|
|
|
@spec.signing_key = nil
|
|
|
|
@spec.cert_chain = signer.cert_chain.map { |cert| cert.to_s }
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
signer
|
|
|
|
end
|
|
|
|
|
|
|
|
def write_package
|
|
|
|
open @spec.file_name, 'wb' do |gem_io|
|
|
|
|
Gem::Package.open gem_io, 'w', @signer do |pkg|
|
|
|
|
pkg.metadata = @spec.to_yaml
|
2008-04-01 02:40:06 +04:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
@spec.files.each do |file|
|
|
|
|
next if File.directory? file
|
|
|
|
next if file == @spec.file_name # Don't add gem onto itself
|
2008-04-01 02:40:06 +04:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
stat = File.stat file
|
|
|
|
mode = stat.mode & 0777
|
|
|
|
size = stat.size
|
2008-04-01 02:40:06 +04:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
pkg.add_file_simple file, mode, size do |tar_io|
|
|
|
|
tar_io.write open(file, "rb") { |f| f.read }
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|