pullall 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/pullall/actions.rb +5 -3
  2. metadata +2 -2
@@ -4,9 +4,10 @@ module Actions
4
4
 
5
5
  STORAGE = "#{ENV['HOME']}/.pullall"
6
6
 
7
- # Output in red
7
+ # Output in bold red
8
8
  def colorize(text)
9
- "\e[#{31}m#{text}\e[0m"
9
+ red_text = "\e[#{31}m#{text}\e[0m"
10
+ "\e[#{1}m#{red_text}\e[0m"
10
11
  end
11
12
 
12
13
  def pluralize(n, text)
@@ -30,7 +31,8 @@ module Actions
30
31
  groups = load_all
31
32
  puts "\n"
32
33
  groups.each do |group, paths|
33
- puts "#{colorize(group)}: #{paths.join(', ')}"
34
+ puts "#{colorize(group)}:"
35
+ puts " #{paths.join("\n ")}"
34
36
  puts "\n"
35
37
  end
36
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pullall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -27,7 +27,7 @@ dependencies:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  version: 1.4.4
30
- description: Pull from all the repositories that belong to a group you created
30
+ description: Git Pull from all the repositories that belong to a group you created
31
31
  email:
32
32
  - joao@iterar.co
33
33
  - joao@savantstudio.co.uk