Class: CreateGithubRelease::Tasks::CreateReleaseTag

Inherits:
CreateGithubRelease::TaskBase show all
Defined in:
lib/create_github_release/tasks/create_release_tag.rb

Overview

Create a release tag in git

Instance Attribute Summary

Attributes inherited from CreateGithubRelease::TaskBase

#project

Instance Method Summary collapse

Methods inherited from CreateGithubRelease::TaskBase

#backtick_debug?, #error, #initialize, #print, #puts

Methods included from BacktickDebug

#`

Constructor Details

This class inherits a constructor from CreateGithubRelease::TaskBase

Instance Method Details

#run

This method returns an undefined value.

Create a release tag in git

Examples:

require 'create_github_release'

options = CreateGithubRelease::CommandLine::Options.new { |o| o.release_type = 'major' }
project = CreateGithubRelease::Project.new(options)
task = CreateGithubRelease::Tasks::CreateReleaseTag.new(project)
begin
  task.run
  puts 'Task completed successfully'
rescue SystemExit
  puts 'Task failed'
end

Raises:

  • (SystemExit)

    if the task fails



32
33
34
35
36
37
38
39
40
# File 'lib/create_github_release/tasks/create_release_tag.rb', line 32

def run
  print "Creating tag '#{project.next_release_tag}'..."
  `git tag '#{project.next_release_tag}'`
  if $CHILD_STATUS.success?
    puts 'OK'
  else
    error "Could not create tag '#{project.next_release_tag}'"
  end
end