Class: StoryPullRequest
- Inherits:
-
FinishedCommand
- Object
- Command
- FinishedCommand
- StoryPullRequest
- Includes:
- Story
- Defined in:
- lib/pivotal-github/story_pull_request.rb
Instance Attribute Summary
Attributes inherited from Command
#args, #known_options, #options, #unknown_options
Instance Method Summary collapse
-
#cmd ⇒ Object
Returns a command appropriate for executing at the command line.
-
#commit_message ⇒ Object
Returns a commit message with links to all the delivered stories.
-
#delivers_url(id) ⇒ Object
Returns the (Markdown) link for a delivered story id.
- #parser ⇒ Object
Methods included from Story
Methods inherited from FinishedCommand
Methods inherited from Command
#initialize, #message, #message_ids, #parse, run!, #story_branch, #story_id, #story_ids
Constructor Details
This class inherits a constructor from Command
Instance Method Details
#cmd ⇒ Object
Returns a command appropriate for executing at the command line
35 36 37 38 39 40 41 42 |
# File 'lib/pivotal-github/story_pull_request.rb', line 35 def cmd Dir.mkdir '.pull_requests' unless File.directory?('.pull_requests') c = ["touch .pull_requests/`date '+%s'`"] c << "git add ." c << %(git commit -m "Pull request" -m "#{}") c << "git pull-request" c.join("\n") end |
#commit_message ⇒ Object
Returns a commit message with links to all the delivered stories.
29 30 31 32 |
# File 'lib/pivotal-github/story_pull_request.rb', line 29 def ids = delivered_ids(`git log #{base_branch}..HEAD`) ids.map { |id| delivers_url(id) }.join("\n") end |
#delivers_url(id) ⇒ Object
Returns the (Markdown) link for a delivered story id.
24 25 26 |
# File 'lib/pivotal-github/story_pull_request.rb', line 24 def delivers_url(id) "[Delivers ##{id}](#{story_url(id)})" end |
#parser ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/pivotal-github/story_pull_request.rb', line 8 def parser OptionParser.new do |opts| opts. = "Usage: git story-pull-request [options]" opts.on("-b", "--base-branch", "base branch for delivered ids") do |opt| self..base_branch = opt end opts.on("-o", "--override", "override unfinished story warning") do |opt| self..override = opt end opts.on_tail("-h", "--help", "this usage guide") do puts opts.to_s; exit 0 end end end |