oliver 1.8.7 → 1.8.7.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26cc85b0ba6b6331ec8e173ab2d756d4e353508f
4
- data.tar.gz: d2e99cdf3d828711beb0d98fc17adfd7daf12af8
3
+ metadata.gz: 4b5b28545c174cc37d9a6e80ae19ea7e500c293e
4
+ data.tar.gz: 3a23194e9245e85a43a5db3376e9eb496d874681
5
5
  SHA512:
6
- metadata.gz: 238765d533ab004c4125258a7f92b0be216efa609302d56ad07566fa4f8891bd71671ba43a56abc08161fccd5d45894f2c3bec9b2c549566d4082dccc4a236c4
7
- data.tar.gz: f6c0313fc54f21ca99f2ab6792331973bb39bd9323be0aac6c00c0f2210e6ac567fb26c0b4bf7fd9b3af12df10f05efd92a1a9c64a44e204e080a97538a316a7
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/LICENSE).
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
- FileManager::YAML['repos'].map do |username, repos|
5
- if repos.nil?
6
- puts "#{Rainbow('Error').red.underline}: Your repos look a little nil."
7
- exit
8
- end
9
- repos.each do |repo|
10
- if File.directory?(repo)
11
- print Rainbow(repo).green
12
- else
13
- print Rainbow(repo).red
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
@@ -1,5 +1,5 @@
1
1
  # The main module for
2
2
  # Oliver's version
3
3
  module Oliver
4
- VERSION = '1.8.7'
4
+ VERSION = '1.8.7.1'
5
5
  end
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-18 00:00:00.000000000 Z
11
+ date: 2014-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler