lib/rubygems/tasks/build/gem.rb



require 'rubygems/tasks/build/task'

if Gem::VERSION > '2.' then require 'rubygems/package'
else                        require 'rubygems/builder'
end

module Gem
  class Tasks
    module Build
      #
      # The `build:gem` task.
      #
      class Gem < Task

        #
        # Initializes the `build:gem` task.
        #
        # @param [Hash] options
        #   Additional options.
        #
        def initialize(options={})
          super()

          yield self if block_given?
          define
        end

        #
        # Defines the `build:gem` task.
        #
        def define
          build_task :gem

          # backwards compatibility for Gem::PackageTask
          task :gem => 'build:gem'

          # backwards compatibility for Hoe
          task :package => 'build:gem'
        end

        #
        # Builds the `.gem` package.
        #
        # @param [String] path
        #   The path for the `.gem` package.
        #
        # @param [Gem::Specification] gemspec
        #   The gemspec to build the `.gem` package from.
        #
        # @api semipublic
        #
        def build(path,gemspec)
          gem = if ::Gem::VERSION > '2.'
                  ::Gem::Package.build(gemspec)
                else
                  ::Gem::Builder.new(gemspec).build
                end

          mv gem, Project::PKG_DIR
        end

      end
    end
  end
end