recollect 0.0.3 → 0.0.4
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/lib/recollect/recollect.rb +9 -6
- data/lib/recollect/version.rb +1 -1
- 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: 6d9cf01e5c3418f4ac98aef0d041bde496f76fd2
|
4
|
+
data.tar.gz: 213bdfe1b3fd932579ec9348ffd1a0a379073421
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fa38a88830a7b1f96fd0d86b657a5001446e2df986ca944dcd93614147b7feff948b2b77b531e5f12706ec9f448a6c667822a5e80c01db1296bc24f5bdc8dc0
|
7
|
+
data.tar.gz: c42d3cc2f43e7a9abf37ec984b4b365ede5448527467c679c4b3e00d55049a6386925603b9dab210411034ae1d873b80dceebb5523f49dbed90126842cd4e0bc
|
data/lib/recollect/recollect.rb
CHANGED
@@ -15,14 +15,17 @@ module Recollect
|
|
15
15
|
|
16
16
|
def usage(msg = nil)
|
17
17
|
puts msg unless msg.nil?
|
18
|
-
puts "
|
18
|
+
puts "\nUSAGE: recollect ACTION [arg]\n"
|
19
|
+
puts 'Recollect manages a series of things worth remembering "recollections" as a series of'
|
20
|
+
puts "text files.\n\n"
|
19
21
|
puts ' Actions: list, new, edit, or <name> where <name> is the recollection to be displayed.'
|
20
|
-
puts ' list
|
21
|
-
puts " name
|
22
|
-
puts ' new [name]
|
23
|
-
puts ' edit [name]
|
22
|
+
puts ' list - provides a listing of all available recollections'
|
23
|
+
puts " name - displays the recollection matching 'name'"
|
24
|
+
puts ' new [name] - creates a new recollection'
|
25
|
+
puts ' edit [name] - modifies an existing recollection'
|
24
26
|
puts ' remove [name] - removes a recollections'
|
25
|
-
puts "
|
27
|
+
puts "\nNote: #{@reserved} are reserved and cannot be the name"
|
28
|
+
puts 'of a recollection.'
|
26
29
|
exit 1
|
27
30
|
end
|
28
31
|
|
data/lib/recollect/version.rb
CHANGED