Class: StoryMerge

Inherits:
FinishedCommand show all
Defined in:
lib/pivotal-github/story_merge.rb

Instance Attribute Summary

Attributes inherited from Command

#args, #known_options, #options, #unknown_options

Instance Method Summary collapse

Methods inherited from FinishedCommand

#run!

Methods inherited from Command

#initialize, #parse, run!, #story_branch, #story_id, #story_ids

Constructor Details

This class inherits a constructor from Command

Instance Method Details

#cmdObject

Returns a command appropriate for executing at the command line For example:

git checkout master
git merge --no-ff <story branch>


26
27
28
29
30
31
32
33
# File 'lib/pivotal-github/story_merge.rb', line 26

def cmd
  lines = ["git checkout #{development_branch}"]
  c = ['git merge --no-ff --log']
  c << argument_string(unknown_options) unless unknown_options.empty?
  c << story_branch
  lines << c.join(' ')
  lines.join("\n")
end

#parserObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/pivotal-github/story_merge.rb', line 6

def parser
  OptionParser.new do |opts|
    opts.banner = "Usage: git story-merge [options]"
    opts.on("-d", "--development BRANCH",
            "development branch (defaults to master)") do |opt|
      self.options.development = opt
    end
    opts.on("-f", "--force", "override unfinished story warning") do |opt|
      self.options.force = opt
    end
    opts.on_tail("-h", "--help", "this usage guide") do
      puts opts.to_s; exit 0
    end
  end
end