lib/rubygems/tasks/build/zip.rb



require 'rubygems/tasks/build/task'

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

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

          yield self if block_given?
          define
        end

        #
        # Defines the `build:zip` task.
        #
        def define
          build_task :zip
        end

        #
        # Builds the `.zip` archive.
        #
        # @param [String] path
        #   The path for the `.zip` archive.
        #
        # @param [Gem::Specification] gemspec
        #   The gemspec to build the archive from.
        #
        def build(path,gemspec)
          run 'zip', '-q', path, *gemspec.files
        end

      end
    end
  end
end