pullall 0.1 → 0.1.1

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.
Files changed (3) hide show
  1. data/lib/pullall.rb +2 -1
  2. data/lib/pullall/actions.rb +1 -1
  3. metadata +2 -2
data/lib/pullall.rb CHANGED
@@ -12,10 +12,11 @@ class Pullall
12
12
  Usage:
13
13
 
14
14
  pullall <group> # pull all the repos from <group>
15
- pullall list # list all the groups
15
+ pullall ls # list all the groups
16
16
  pullall add <path> -g <group> # add <path> to <group>. If <group> doesn't exist create it
17
17
  pullall add <path1> <path2> -g <group> # add multiple paths to <group>
18
18
  pullall rm <path> -g <group> # remove <path> from <group>
19
+ pullall rm <path1> <path2> -g <group> # remove multiple paths from <group>
19
20
  pullall rm -g <group> # remove entire group of repositories
20
21
 
21
22
  Examples:
@@ -45,7 +45,7 @@ module Actions
45
45
  groups[group] = [*paths]
46
46
  end
47
47
  save_all(groups)
48
- msg = paths.empty? ? "Group successfully created" : "Path successfully saved"
48
+ msg = paths.empty? ? "Group successfully created" : "Paths successfully saved"
49
49
  puts msg
50
50
  end
51
51
 
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'
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-10 00:00:00.000000000 Z
12
+ date: 2012-11-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: oj