Sha256: 8704010af6c98495446346a51da823066e3348dfbcfa34a58bf41d948c4f0fb6
Contents?: true
Size: 924 Bytes
Versions: 7
Compression:
Stored size: 924 Bytes
Contents
require 'rgitflow/tasks/task' module RGitFlow module Tasks class Feature class Finish < RGitFlow::Tasks::Task def initialize(git) super(git, 'finish', 'Finish a feature branch', ['rgitflow', 'feature']) end protected def run status 'Finishing feature branch...' branch = @git.current_branch unless branch.start_with? RGitFlow::Config.options[:feature] error 'Cannot finish a feature branch unless you are in a feature branch' abort end @git.branch(RGitFlow::Config.options[:develop]).checkout @git.merge branch @git.push if @git.is_remote_branch? branch @git.push('origin', branch, {:delete => true}) end @git.branch(branch).delete status "Finished feature branch #{branch}!" end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems