Class: CreateGithubRelease::Tasks::CreateReleaseBranch
- Inherits:
-
CreateGithubRelease::TaskBase
- Object
- CreateGithubRelease::TaskBase
- CreateGithubRelease::Tasks::CreateReleaseBranch
- Defined in:
- lib/create_github_release/tasks/create_release_branch.rb
Overview
Create the release branch in git
Instance Attribute Summary
Attributes inherited from CreateGithubRelease::TaskBase
Instance Method Summary collapse
-
#run
Create the release branch in git.
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 the release branch in git
32 33 34 35 36 37 38 39 40 |
# File 'lib/create_github_release/tasks/create_release_branch.rb', line 32 def run print "Creating branch '#{project.release_branch}'..." `git checkout -b '#{project.release_branch}' > /dev/null 2>&1` if $CHILD_STATUS.success? puts 'OK' else error "Could not create branch '#{project.release_branch}'" unless $CHILD_STATUS.success? end end |