Class: Commands::Finish
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#get, #initialize, #put, #sys
Constructor Details
This class inherits a constructor from Commands::Base
Instance Method Details
#run! ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/commands/finish.rb', line 6 def run! super unless story_id put "Branch name must contain a Pivotal Tracker story id" return 1 end put "Marking Story #{story_id} as finished..." if story.update(:current_state => finished_state) put "Merging #{current_branch} into #{integration_branch}" sys "git checkout #{integration_branch}" sys "git merge --no-ff #{current_branch}" put "Removing #{current_branch} branch" sys "git branch -d #{current_branch}" return 0 else put "Unable to mark Story #{story_id} as finished" return 1 end end |