oliver 1.8.7 → 1.8.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -3
- data/lib/oliver/argument_files/list.rb +17 -13
- data/lib/oliver/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b5b28545c174cc37d9a6e80ae19ea7e500c293e
|
4
|
+
data.tar.gz: 3a23194e9245e85a43a5db3376e9eb496d874681
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d573805fdb7236ec7663e165c4419458bca86b6e659a5fdbcf1c554a8ae6d315a9f6e09114b72607fdca818ba0aab9c52c9c9f7ee2390d159674e234de167930
|
7
|
+
data.tar.gz: 400fb4c37cc577f0ad485c26732394fd6a6bcc6b851005f361d33ee6afc35514717d0fed35fa53cb037d93031a01c655b8abcfd5f269dd8dc8bcd4c2cda26504
|
data/README.md
CHANGED
@@ -195,7 +195,7 @@ append `colour=off` to any statement
|
|
195
195
|
don't forget to spell *"colour"* **the proper way**.
|
196
196
|
|
197
197
|
things to remember
|
198
|
-
|
198
|
+
-----------------
|
199
199
|
|
200
200
|
- run everything with `olive`, not `oliver`. "oliver" is the name
|
201
201
|
of the project, `olive` is the name of the CLI.
|
@@ -212,7 +212,7 @@ $ olive init -d hey here are more arguments
|
|
212
212
|
```
|
213
213
|
|
214
214
|
branches
|
215
|
-
|
215
|
+
-------
|
216
216
|
|
217
217
|
(there may or may not be an unstable branch at the moment.
|
218
218
|
I'm constantly adding it and deleting it. i won't push gems
|
@@ -246,7 +246,7 @@ ideas
|
|
246
246
|
-----
|
247
247
|
|
248
248
|
refer to
|
249
|
-
[IDEAS.md](https://github.com/trommel/oliver/blob/master/
|
249
|
+
[IDEAS.md](https://github.com/trommel/oliver/blob/master/IDEAS.md).
|
250
250
|
|
251
251
|
versions
|
252
252
|
--------
|
@@ -284,6 +284,20 @@ end
|
|
284
284
|
|
285
285
|
etcetera, etcetera
|
286
286
|
|
287
|
+
to do
|
288
|
+
-----
|
289
|
+
|
290
|
+
there's no checkmarked things right now because i just made this list, please
|
291
|
+
don't think i'm some unproductive asshole who does nothing all day or something
|
292
|
+
idk
|
293
|
+
|
294
|
+
- [ ] remake the help/info thing to be slimmer and look better
|
295
|
+
- [ ] get `add` working
|
296
|
+
- [ ] get `remove` working
|
297
|
+
- [ ] fix bugs with `update` (tons)
|
298
|
+
- [ ] fix bugs with `install` (not as many)
|
299
|
+
- [ ] fix bugs with `list` (hardly any, afaik)
|
300
|
+
|
287
301
|
known bugs
|
288
302
|
----------
|
289
303
|
|
@@ -1,19 +1,23 @@
|
|
1
1
|
require_relative '../file_manager'
|
2
2
|
|
3
3
|
counter = 0
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
4
|
+
begin
|
5
|
+
FileManager::YAML['repos'].map do |username, repos|
|
6
|
+
if repos.nil?
|
7
|
+
puts "#{Rainbow('Error').red.underline}: Your repos look a little nil."
|
8
|
+
exit
|
9
|
+
end
|
10
|
+
repos.each do |repo|
|
11
|
+
if File.directory?(repo)
|
12
|
+
print Rainbow(repo).green
|
13
|
+
else
|
14
|
+
print Rainbow(repo).red
|
15
|
+
end
|
16
|
+
print "\t" if counter % 4 == 0
|
17
|
+
counter += 1
|
14
18
|
end
|
15
|
-
print "\t" if counter % 4 == 0
|
16
|
-
counter += 1
|
17
19
|
end
|
20
|
+
puts
|
21
|
+
rescue
|
22
|
+
exit
|
18
23
|
end
|
19
|
-
puts
|
data/lib/oliver/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oliver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.7
|
4
|
+
version: 1.8.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|