dev_flow 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/dev_flow/commands/info.rb +3 -2
- data/lib/dev_flow/version.rb +1 -1
- metadata +1 -1
|
@@ -24,7 +24,7 @@ module DevFlow
|
|
|
24
24
|
else # otherwise show switch options
|
|
25
25
|
puts "You switch to other branches:".bold.yellow
|
|
26
26
|
puts "Type #{0.to_s.bold} to switch to develop trunk." unless @git.current_branch == 'develop'
|
|
27
|
-
puts "Simply press enter to keep working on the current branch."
|
|
27
|
+
puts "Simply press enter to keep working on the current branch.".bold.blue
|
|
28
28
|
print @waiting.keys.join(", ") + ":"
|
|
29
29
|
|
|
30
30
|
ans = STDIN.gets.chomp!
|
|
@@ -75,7 +75,8 @@ module DevFlow
|
|
|
75
75
|
puts " $ dw pg 40 'git commit message'".bold.blue
|
|
76
76
|
puts "If you fully implemented and tested the code, issue:"
|
|
77
77
|
puts " $ dw complete"
|
|
78
|
-
puts "
|
|
78
|
+
puts "to complete the task."
|
|
79
|
+
# puts "Then #{'do not forget'.bold.red} inform the leader (#{leader_name.bold})."
|
|
79
80
|
else
|
|
80
81
|
puts "You are not on any non-branches. You may commit all you changes and"
|
|
81
82
|
puts "switch to develop trunk before the next move:"
|
data/lib/dev_flow/version.rb
CHANGED