dev_flow 0.0.11 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dev_flow/app.rb +1 -1
- data/lib/dev_flow/commands/info.rb +2 -2
- data/lib/dev_flow/version.rb +1 -1
- metadata +1 -1
data/lib/dev_flow/app.rb
CHANGED
@@ -166,7 +166,7 @@ module DevFlow
|
|
166
166
|
header = nil
|
167
167
|
header = '+'.bold.green if task.is_completed?
|
168
168
|
header = '-' unless header or task.is_workable?
|
169
|
-
header =
|
169
|
+
header = '=' if @git.current_branch == task.branch_name
|
170
170
|
unless header
|
171
171
|
j += 1
|
172
172
|
header = j.to_s.bold
|
@@ -23,8 +23,8 @@ module DevFlow
|
|
23
23
|
puts "You are in a release branch, please release it as soon as possible."
|
24
24
|
else # otherwise show switch options
|
25
25
|
puts "You switch to other branches:".bold.yellow
|
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."
|
26
|
+
puts "Type #{0.to_s.bold} to switch to develop trunk.".bold.blue unless @git.current_branch == 'develop'
|
27
|
+
puts "Simply press enter to keep working on the current branch."
|
28
28
|
print @waiting.keys.join(", ") + ":"
|
29
29
|
|
30
30
|
ans = STDIN.gets.chomp!
|
data/lib/dev_flow/version.rb
CHANGED