oliver 2.1.6 → 2.2.0
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/oliver/commands.rb +1 -1
- data/lib/oliver/version.rb +2 -2
- data/lib/oliver.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb3b76482d06d7a9f6e484dc0ed2af574850eb82
|
4
|
+
data.tar.gz: 6a99fc533ad4540744bf10be8a2e717ba0fe205e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fad27482ce88a68e754a0691e4760fd184f1027584c515ad012d04a1ec9678cfb9e1edef1212f34dc88a733dc39221221b4f9cbcfd08540c71707ec1c539154f
|
7
|
+
data.tar.gz: 573be24933aa74f967ab523a2f3cf6729a94a89da91ad0495e0f4d9bec63a1c71ea2de4b9902ffa14b0152c50b73d57cbc9cee35f740cda1f0bb206e404891aa
|
data/README.md
CHANGED
@@ -93,13 +93,13 @@ The + (plus sign) next to the repo shows that it'll be cloned on the next
|
|
93
93
|
`olive install`. The # (pound sign) next to the repo
|
94
94
|
means it'll remain unaffected.
|
95
95
|
|
96
|
-
### Update repos
|
96
|
+
### Pull/Update repos
|
97
97
|
|
98
98
|
Essentially run `git pull` in each
|
99
99
|
individual repo
|
100
100
|
|
101
101
|
```bash
|
102
|
-
$ olive
|
102
|
+
$ olive pull
|
103
103
|
```
|
104
104
|
|
105
105
|
To-Do
|
data/lib/oliver/commands.rb
CHANGED
data/lib/oliver/version.rb
CHANGED
data/lib/oliver.rb
CHANGED
@@ -55,7 +55,7 @@ module Oliver
|
|
55
55
|
init: 'initializes the main directory by creating a base dotfile',
|
56
56
|
install: 'clones/removes repos if they\'re listed',
|
57
57
|
list: 'list user repos',
|
58
|
-
|
58
|
+
pull: 'pull updates from each tracked repo',
|
59
59
|
version: 'return the current version',
|
60
60
|
help: 'return this help menu',
|
61
61
|
}
|
@@ -78,8 +78,8 @@ module Oliver
|
|
78
78
|
install
|
79
79
|
when 'list'
|
80
80
|
list
|
81
|
-
when '
|
82
|
-
|
81
|
+
when 'pull'
|
82
|
+
pull
|
83
83
|
else end
|
84
84
|
end
|
85
85
|
end
|