Module: RoHelpers::GitFlowBuilderHelper::ClsMeths

Includes:
RoHelper
Defined in:
lib/git_flow_builder_helper.rb

Defined Under Namespace

Classes: GitFlow

Instance Method Summary collapse

Methods included from RoHelper

#cmd, #cmd_objs, #cmds

Instance Method Details

#git_flowsObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/git_flow_builder_helper.rb', line 18

def git_flows
  cmd 'gfi', "git init && git flow init -f"

  #git flow release
  cmd 'fr', "git flow release"
  cmd 'frf', "fr finish", "zeus git_flow get_releases"
  cmd 'frp', "fr publish", "zeus git_flow get_releases"

  #git flow feature
  cmd 'ff', "git flow feature"
  cmd 'frs', "git flow release start"
  cmd 'ffs', "git flow feature start"
  cmd 'fff', "ff finish", "zeus git_flow get_features"
  cmd 'ffc', 'ff checkout', "zeus git flow get_features"
  cmds
end