Sha256: 51cecd29b086ec0207cfa24754235c81756f761f2b4d92527a1a1cb13689921c

Contents?: true

Size: 470 Bytes

Versions: 1

Compression:

Stored size: 470 Bytes

Contents

require 'KCommercialPipeline/command/command'
require 'KCommercialPipeline/core/change_log/change_log_task'
module KCommercial
  module KCPipeline
    class Command
      class ChangeLog < Command
        self.command = 'change_log'
        self.version = KCommercialPipeline::VERSION
        self.summary = '自动比对两个版本之间的changeLog.'

        def run
          KCommercial::KCPipeline::ChangeLogTask.new.run
        end
      end
    end
  end
end


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
KCommercialPipeline-0.2.5.1 lib/KCommercialPipeline/command/change_log.rb