Sha256: c85fcf4431eaa59a29476f484883a6fb07c51d7c2363233ff92986c06f561975
Contents?: true
Size: 1.27 KB
Versions: 9
Compression:
Stored size: 1.27 KB
Contents
require 'rgitflow/tasks/task' module RGitFlow module Tasks class Release class Start < RGitFlow::Tasks::Task def initialize(git) super(git, 'start', 'Start a release branch', ['rgitflow', 'release']) end protected def run status 'Starting release branch...' unless @git.current_branch == RGitFlow::Config.options[:develop] error 'Cannot create release branch unless on development branch' abort end branch = ENV['BRANCH'] while branch.blank? error 'Cannot create a branch with an empty name!' prompt 'Please enter a name for your release branch:' branch = STDIN.gets.chomp end branch = [RGitFlow::Config.options[:release], branch].join('/') if @git.is_local_branch? branch error 'Cannot create a branch that already exists locally' abort end if @git.is_remote_branch? branch error 'Cannot create a branch that already exists remotely' abort end @git.branch(branch).create @git.branch(branch).checkout status "Started release branch #{branch}!" end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems