oliver 1.5.5 → 1.5.5.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: e49525dd2b30b24e54c153b948d8588bcead1b6d
4
- data.tar.gz: 8eb689d49bc2bd9bf6979b7e6a8c71a94381e477
3
+ metadata.gz: 042b5ec64b3e53f4285323839d01ab457913b5b5
4
+ data.tar.gz: 290c3e15366194eac2a181923eba0635ee1ad57d
5
5
  SHA512:
6
- metadata.gz: b641ece129a7e9a78a3b631250849d3b3591edb6d1234d38753b1a5c7c86b345c2b19cf18be733011bcb0d1165b20c6b9777a02c8595db19ab983a5da961a2b4
7
- data.tar.gz: d1b6ca1d806980ff236500d2bc359f86e623d9c8eef6d8f24e05eb3c126abe5717987b38cf7194fc8f60dde7746218e98a528ff8f332616fe9bdb1ed895da200
6
+ metadata.gz: 28e7c21bcad051e990e75d19c1c98e2357e7ccbac7178f9df063c27ae2d2cd253e2c7bce4c29603f46f62fb217c0e6b270b7435155b31e71002e1969c806d3a5
7
+ data.tar.gz: 9f9aa87fe2c344f907727562fdf37545fac33c0b4efdfbe2ddf550d5e8302006666343d2730b80e4f998d12f221d1a6e20e34c49bd4b0fdd3d07dc8b64eb055f
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Josh Trommel
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -255,10 +255,17 @@ contribution
255
255
  refer to
256
256
  [CONTRIBUTING.md](https://github.com/trommel/oliver/blob/master/spec/CONTRIBUTING.md).
257
257
 
258
+ if you think this is cool
259
+ -------------------------
258
260
 
259
- l3g4l 0bl1g4t10n$
260
- ------------------
261
+ I hate dropping a link for donations,
262
+ but a dude's gotta eat.
261
263
 
262
- is there even a clear idea to steal?
264
+ [![Support via Gittip](https://rawgithub.com/twolfson/gittip-badge/0.2.0/dist/gittip.png)](https://www.gittip.com/trommel)
263
265
 
264
- this is my "idea". please don't steal it.
266
+
267
+ licensing
268
+ ---------
269
+
270
+ refer to
271
+ [LICENSE](https://github.com/trommel/oliver/blob/master/spec/LICENSE).
@@ -5,7 +5,6 @@ require 'YAML'
5
5
  require_relative "oliver/oliver_file_name"
6
6
  require_relative "oliver/arguments"
7
7
  require_relative "oliver/version"
8
- require_relative "oliver/help"
9
8
  require_relative "oliver/main"
10
9
 
11
10
  # if the user doesn't want to use rainbow
@@ -2,7 +2,7 @@
2
2
  # (Make this automatic later on, but for some reason
3
3
  # automatic isn't working right now, and I don't
4
4
  # know why :P)
5
- files = %w(add init install list remove update)
5
+ files = %w(add init install list remove update help)
6
6
  files.each do |file|
7
7
  require_relative "argument_files/#{file}"
8
8
  end
@@ -30,9 +30,10 @@ def arguments
30
30
  add
31
31
  when 'remove'
32
32
  remove
33
+ when 'help'
34
+ help
33
35
  when '-v' || '--version'
34
36
  puts "#{Rainbow('oliver').red} #{Rainbow("v#{Oliver::VERSION}").green}"
35
- when '-h' || '--help'
36
37
  help
37
38
  else
38
39
  help
@@ -1,3 +1,3 @@
1
1
  module Oliver
2
- VERSION = "1.5.5"
2
+ VERSION = "1.5.5.1"
3
3
  end
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: 1.5.5
4
+ version: 1.5.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh
@@ -66,19 +66,20 @@ files:
66
66
  - Gemfile
67
67
  - Gemfile.lock
68
68
  - IDEAS.md
69
+ - LICENSE
69
70
  - README.md
70
71
  - Rakefile
71
72
  - bin/olive
72
73
  - bin/oliver
73
74
  - lib/oliver.rb
74
75
  - lib/oliver/argument_files/add.rb
76
+ - lib/oliver/argument_files/help.rb
75
77
  - lib/oliver/argument_files/init.rb
76
78
  - lib/oliver/argument_files/install.rb
77
79
  - lib/oliver/argument_files/list.rb
78
80
  - lib/oliver/argument_files/remove.rb
79
81
  - lib/oliver/argument_files/update.rb
80
82
  - lib/oliver/arguments.rb
81
- - lib/oliver/help.rb
82
83
  - lib/oliver/main.rb
83
84
  - lib/oliver/oliver_file_name.rb
84
85
  - lib/oliver/version.rb