oliver 2.1.2 → 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d862d043ce7238b13ce068bcbb90e28f55bc5e4
4
- data.tar.gz: 7ada391fc328468e0cee10847d40db761d875d63
3
+ metadata.gz: afc126e3d9398f63496ca8b6e6f1c3e3de99cb34
4
+ data.tar.gz: 5c4e8b89f2a2b28b714d564e82f2a1421593591a
5
5
  SHA512:
6
- metadata.gz: 909c1b5d05b90c4e5b02d4977aea43be2b6db90d82f59e1aeca1eb7ed8b8ada3e35866f8dae78e637cb540bab524669bda4b56ecf896deed095a085a6112105d
7
- data.tar.gz: 16146eafcdb2553491e57df506a6b7a3155091eff5c0e8d3332b0f181b25448d0bef1dcd50ec9e6a034c1cd79e13a79e9b194979cfd6f93583ff654ea93b3baa
6
+ metadata.gz: 773bd03eb2f53f230acdf5a491644bc1497fcfc0eb32e32d851ad6b71519f4262dc308c251b7fb6eca4a44990a81f0f6433f9d3ca00f7907b292b5454bdb5078
7
+ data.tar.gz: 75f101dfe0345d1ef086bce6b9f402ee5eac10de9c1c8fe5b0ae2a76d0319f84b4c3e15c775f14851b1a054f08321d0c29ca9a0263074e083c62e7aa30c1ac46
@@ -77,13 +77,15 @@ module Oliver
77
77
  end
78
78
 
79
79
  def list
80
- FileManager::BODY.map do |user, repos|
81
- repos ||= []
82
- # Add silent shit later when it's actually working
83
- unless repos.empty?
84
- repos.each do |repo|
85
- if File.directory?(repo) then print '# ' else print '+ ' end # bugs
86
- puts repo
80
+ unless FileManager::BODY.nil?
81
+ FileManager::BODY.map do |user, repos|
82
+ repos ||= []
83
+ # Add silent shit later when it's actually working
84
+ unless repos.empty?
85
+ repos.each do |repo|
86
+ if File.directory?(repo) then print '# ' else print '+ ' end # bugs
87
+ puts repo
88
+ end
87
89
  end
88
90
  end
89
91
  end
@@ -1,4 +1,4 @@
1
1
  # Oliver's version
2
2
  module Oliver
3
- VERSION = '2.1.2'
3
+ VERSION = '2.1.3'
4
4
  end
data/lib/oliver.rb CHANGED
@@ -56,7 +56,6 @@ module Oliver
56
56
  install: 'clones/removes repos if they\'re listed',
57
57
  list: 'list user repos',
58
58
  update: 'pull updates from each tracked repo',
59
- status: 'Pull repo\'s cloning protocol and record location',
60
59
  version: 'return the current version',
61
60
  help: 'return this help menu',
62
61
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oliver
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Trommel