aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/util.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/util.rb')
-rw-r--r--lib/leap_cli/util.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/leap_cli/util.rb b/lib/leap_cli/util.rb
index 909dc0a..ba88891 100644
--- a/lib/leap_cli/util.rb
+++ b/lib/leap_cli/util.rb
@@ -1,4 +1,5 @@
require 'digest/md5'
+require 'paint'
module LeapCli
@@ -112,19 +113,19 @@ module LeapCli
end
def progress_created(path)
- progress 'created %s' % relative_path(path)
+ progress Paint['created', :green, :bold] + ' ' + relative_path(path)
end
def progress_updated(path)
- progress 'updated %s' % relative_path(path)
+ progress Paint['updated', :cyan, :bold] + ' ' + relative_path(path)
end
def progress_nochange(path)
- progress2 'no change %s' % relative_path(path)
+ progress2 Paint['no change', :white, :bold] + ' ' + relative_path(path)
end
def progress_removed(path)
- progress 'removed %s' % relative_path(path)
+ progress Paint['removed', :red, :bold] + ' ' + relative_path(path)
end
#