lib/dev_flow/commands/info.rb in dev_flow-0.0.9 vs lib/dev_flow/commands/info.rb in dev_flow-0.0.10
- old
+ new
@@ -22,11 +22,11 @@
if i_am_leader? and in_release? # concentrate
puts "You are in a release branch, please release it as soon as possible."
else # otherwise show switch options
puts "You switch to other branches:".bold.yellow
puts "Type #{0.to_s.bold} to switch to develop trunk." unless @git.current_branch == 'develop'
- puts "Simply press enter to keep working on the current branch."
+ puts "Simply press enter to keep working on the current branch.".bold.blue
print @waiting.keys.join(", ") + ":"
ans = STDIN.gets.chomp!
if ans == 0.to_s
switch_to! 'develop'
@@ -73,10 +73,11 @@
puts " $ dw progress 40 'git commit message'".bold.blue
puts "Or use the short version:"
puts " $ dw pg 40 'git commit message'".bold.blue
puts "If you fully implemented and tested the code, issue:"
puts " $ dw complete"
- puts "Then #{'do not forget'.bold.red} inform the leader (#{leader_name.bold})."
+ puts "to complete the task."
+ # puts "Then #{'do not forget'.bold.red} inform the leader (#{leader_name.bold})."
else
puts "You are not on any non-branches. You may commit all you changes and"
puts "switch to develop trunk before the next move:"
puts " $ git commit -am 'git commit message'".bold.blue
puts " $ git checkout develop".bold.blue