Create a GemPackage task library. Automatically
define the gem if a block is
given. If no block is supplied, then #define needs to be called to define the task.
# File lib/rubygems/package_task.rb, line 78
def initialize(gem_spec)
init gem_spec
yield self if block_given?
define if block_given?
end