recollect 0.0.4 → 0.0.5
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/README.md +11 -6
- data/lib/recollect/recollect.rb +1 -1
- 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: 305d66ecdca334b3935b8966bf334103cf91d77b
|
4
|
+
data.tar.gz: c2a8e0aae304513710da049184540fb1521fffad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d88b248012759ed8967d51aa516910e3a29c7e8c3ccf53f11b4f653e6c46ccbe8c5338d5e29bd4a755024c5b55853dcf2f0521952598ef6b17dce8865944def5
|
7
|
+
data.tar.gz: aed5fdfe030853859b1c66cda69b037a371ab44ccdc5a0f0b867b833c9d558432db9ef5d0d957d12bda78c67d8853e40b9a8e363d8d94ffc57b0024f4362ba36
|
data/README.md
CHANGED
@@ -14,10 +14,15 @@ If you haven't already, you should set your EDITOR. On OSX you can set it to Tex
|
|
14
14
|
### Usage
|
15
15
|
|
16
16
|
USAGE: recollect ACTION [arg]
|
17
|
+
Recollect manages a series of things worth remembering "recollections" as a series of
|
18
|
+
text files.
|
19
|
+
|
17
20
|
Actions: list, new, edit, or <name> where <name> is the recollection to be displayed.
|
18
|
-
list
|
19
|
-
name
|
20
|
-
new [name]
|
21
|
-
edit [name]
|
22
|
-
remove [name] - removes a
|
23
|
-
|
21
|
+
list - provides a listing of all available recollections
|
22
|
+
name - displays the recollection matching 'name'
|
23
|
+
new [name] - creates a new recollection
|
24
|
+
edit [name] - modifies an existing recollection
|
25
|
+
remove [name] - removes a recollection
|
26
|
+
|
27
|
+
Note: ["new", "edit", "remove", "help", "search"] are reserved and cannot be the name
|
28
|
+
of a recollection.
|
data/lib/recollect/recollect.rb
CHANGED
@@ -23,7 +23,7 @@ module Recollect
|
|
23
23
|
puts " name - displays the recollection matching 'name'"
|
24
24
|
puts ' new [name] - creates a new recollection'
|
25
25
|
puts ' edit [name] - modifies an existing recollection'
|
26
|
-
puts ' remove [name] - removes a
|
26
|
+
puts ' remove [name] - removes a recollection'
|
27
27
|
puts "\nNote: #{@reserved} are reserved and cannot be the name"
|
28
28
|
puts 'of a recollection.'
|
29
29
|
exit 1
|
data/lib/recollect/version.rb
CHANGED