Sha256: 9e1c3dbb585654448c823aaf268c2112b7164acc78e169479c43f65e2782d290

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

require 'thor'
require 'gitx'
require 'gitx/cli/base_command'

module Gitx
  module Cli
    class BuildtagCommand < BaseCommand
      BUILD_TAG_PREFIX = 'builds'.freeze
      BUILD_TAG_SEPARATOR = '/'.freeze

      desc 'buildtag', 'create a tag for the current build and push it back to origin (supports Travis CI and Codeship)'
      method_option :branch, type: :string, aliases: '-b', desc: 'branch name for build tag'
      method_option :message, type: :string, aliases: '-m', desc: 'message to attach to the buildtag'
      def buildtag
        raise "Branch must be one of the supported taggable branches: #{config.taggable_branches}" unless config.taggable_branch?(branch_name)

        run_git_cmd 'tag', build_tag, '--annotate', '--message', label
        run_git_cmd 'push', 'origin', build_tag
      end

      private

      def branch_name
        options[:branch] || current_branch.name
      end

      def label
        options[:message] || "[gitx] buildtag for #{branch_name}"
      end

      def build_tag
        @build_tag ||= [
          BUILD_TAG_PREFIX,
          branch_name,
          utc_timestamp
        ].join(BUILD_TAG_SEPARATOR)
      end

      def utc_timestamp
        Time.now.utc.strftime '%Y-%m-%d-%H-%M-%S'
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gitx-4.5.0 lib/gitx/cli/buildtag_command.rb
gitx-4.4.0 lib/gitx/cli/buildtag_command.rb
gitx-4.3.0 lib/gitx/cli/buildtag_command.rb
gitx-4.1.1 lib/gitx/cli/buildtag_command.rb
gitx-4.1.0 lib/gitx/cli/buildtag_command.rb
gitx-4.0.0 lib/gitx/cli/buildtag_command.rb
gitx-4.0.0.ci.234.1 lib/gitx/cli/buildtag_command.rb
gitx-3.2.0 lib/gitx/cli/buildtag_command.rb
gitx-3.2.0.ci.231.1 lib/gitx/cli/buildtag_command.rb
gitx-3.1.2 lib/gitx/cli/buildtag_command.rb
gitx-3.1.1 lib/gitx/cli/buildtag_command.rb