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.
Files changed (4) hide show
  1. checksums.yaml +10 -10
  2. data/bin/sheldon +2 -2
  3. data/lib/sheldon/sheldon.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,17 +1,17 @@
1
1
  ---
2
2
  !binary "U0hBMjU2":
3
3
  metadata.gz: !binary |-
4
- ZTE5OTNiMDViZjI1ZTIxMmJkM2NkMDAzNjA5YzhkN2M3MTcxZjQ2MjNjZjNh
5
- ZTkwYTc1ZDJhYTRhZGM4NGQ1ZQ==
4
+ MjkxYzNiNjFlZGIxNTQ0ZmFhYmMwNmVjYmEwZGJmYTE1YWEzYjIzZGE3OWZh
5
+ NDk2YzU1M2MwYWU4NmVmMzg1NA==
6
6
  data.tar.gz: !binary |-
7
- MjY3YWM0Y2Y1Yzk2ODllM2Y1N2Q5MmI2ZTkzYTg1NjJhYmVhODQxZGE4Y2Rl
8
- OWY2OGNiMDhjMDkzMzI4NTgyNA==
7
+ YTQ0OWI3ZGNmMGM2YWMwZTgxOGRjYjZhNGVhZWRiNTUxYzUyMDZmYWRlMmU0
8
+ OWM1NDc4ZGFlN2MxY2U3NGY5Yg==
9
9
  SHA512:
10
10
  metadata.gz: !binary |-
11
- ODM1YzI1ZWVkZjgzY2IzYjQ1MWEwMzQ0MzcwNTg3ZTI2YzhmMGVlOTc2MTcy
12
- YjEzY2E1MDY4MjUwYThiODc0MWI2NTIyZjY2YjJkZDM4NDZmYmY0YThjOGFk
13
- YzhiMzRlNGJkZDBjOTk3OTA4YmQ2OGViODkzYmI2Njk5YmYxNGU=
11
+ YzIyOWVlODUzN2EzNTY4ODAxNTFjYTVhZTJlZmQzOGU4ZjVhNjlkODJjMmE4
12
+ MzUwOGY1YTAxYjYxNDA1MDEzNGQwYjg4YjRhNzg5ZTZjNTdkNzU5YmRkNmEz
13
+ Zjk0YjM0YmM0Nzg5MWQ0ZDNhOGY2OTYyYTIzOWIyM2VmMjQ4NWE=
14
14
  data.tar.gz: !binary |-
15
- ODg1YjMxMTkwNjEzZjE0MGYzZTdlYTYwOWQ0MjlkOGFlNzQ0MmU1YmY0Yjc1
16
- ZTg1M2YzNTk2Zjg5NTRlN2QwYjA5MzhiMmQ2YzU5YjQ2MDdmNTEyZGI4MGFh
17
- OTg5MjJiOTA5MjYyYWE5OTBkYjc2YjRkNTkyYzUyN2VjYzNiOGE=
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("Built #{File.basename(rel_path_to_target)}") if sheldon.build(abs_build_path)
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("I've forgotten about #{recall_cue}. Let us never mention it again.")
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."
@@ -1,7 +1,7 @@
1
1
  require "fileutils"
2
2
 
3
3
  class Sheldon
4
- VERSION = "6.0.5".freeze
4
+ VERSION = "6.0.6".freeze
5
5
  attr_reader :brain, :builder
6
6
 
7
7
  def initialize(sheldon_data_dir)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sheldon
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.5
4
+ version: 6.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Jones