sheldon 6.0.5 → 6.0.6
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 +10 -10
- data/bin/sheldon +2 -2
- data/lib/sheldon/sheldon.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMjU2":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
5
|
-
|
4
|
+
MjkxYzNiNjFlZGIxNTQ0ZmFhYmMwNmVjYmEwZGJmYTE1YWEzYjIzZGE3OWZh
|
5
|
+
NDk2YzU1M2MwYWU4NmVmMzg1NA==
|
6
6
|
data.tar.gz: !binary |-
|
7
|
-
|
8
|
-
|
7
|
+
YTQ0OWI3ZGNmMGM2YWMwZTgxOGRjYjZhNGVhZWRiNTUxYzUyMDZmYWRlMmU0
|
8
|
+
OWM1NDc4ZGFlN2MxY2U3NGY5Yg==
|
9
9
|
SHA512:
|
10
10
|
metadata.gz: !binary |-
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
YzIyOWVlODUzN2EzNTY4ODAxNTFjYTVhZTJlZmQzOGU4ZjVhNjlkODJjMmE4
|
12
|
+
MzUwOGY1YTAxYjYxNDA1MDEzNGQwYjg4YjRhNzg5ZTZjNTdkNzU5YmRkNmEz
|
13
|
+
Zjk0YjM0YmM0Nzg5MWQ0ZDNhOGY2OTYyYTIzOWIyM2VmMjQ4NWE=
|
14
14
|
data.tar.gz: !binary |-
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
ZjdmYWI0OWIzOTFiOGZhMmZkZjIzNWM2MTk2YWM2ZjQ4YzY1MWUyMzUxYmUy
|
16
|
+
OGY2Yzc3MzI3ODc0YzgxYWMwY2EzZmQxNjhlY2M1MzI0ZjEyZjMyN2U1Nzgz
|
17
|
+
Njk0ZDE0NWUwMWE1MmQwMjE2YzJiMDljNjEwZDc3Y2I1ZDg4ODk=
|
data/bin/sheldon
CHANGED
@@ -17,7 +17,7 @@ module CLI
|
|
17
17
|
def build(rel_path_to_target)
|
18
18
|
abs_build_path = File.expand_path(rel_path_to_target)
|
19
19
|
with_exception_handling do
|
20
|
-
prompt.ok("
|
20
|
+
prompt.ok("Sheldon build complete: #{abs_build_path}") if sheldon.build(abs_build_path)
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
@@ -25,7 +25,7 @@ module CLI
|
|
25
25
|
def forget(recall_cue=nil)
|
26
26
|
recall_cue ||= cue_picker("What would you like to forget?")
|
27
27
|
with_exception_handling { sheldon.forget(recall_cue) }
|
28
|
-
prompt.ok("
|
28
|
+
prompt.ok("Sheldon forget complete: #{recall_cue}")
|
29
29
|
end
|
30
30
|
|
31
31
|
desc "learn path_to_target", "Add a new file/folder to Sheldon's brain. Supply a recall_cue at runtime."
|
data/lib/sheldon/sheldon.rb
CHANGED