kwyktree 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45c53da7e4aaef3c10161a6097dc952efb33313341b98e3d35c8e95a676bbc85
4
- data.tar.gz: b5a5c985cf0e6346358e1da89b27c7dca8d8472baef50d27be750699acb0f20a
3
+ metadata.gz: 741d479d0f63ba705fd191de60d7787481705821886f86354d85513d22ba43f5
4
+ data.tar.gz: 78bdad8d021bae75b594c98741d9f3be0b8b172c5248309b5303004d1906ba68
5
5
  SHA512:
6
- metadata.gz: 5760d32bf2597389a48aed31ffd321d2d82fe9126a6313158d087560cc967cb081f3491d12bcb45b3cf1f1d2b4a59078130a8c6d101e291d02b9a1c91bac9af0
7
- data.tar.gz: 227e6028d424b047c7efcbda67d71f8bc882fc9953e0c8859d488ef00620fe1acae811160ce8df1930921bb0270a935e18a2518db3a90f4d60be272defba02b5
6
+ metadata.gz: 7aad57364d564011a48af031b75c27b8505826fe7aff93e144f420c43cee405187ba751c7d3afe4fb6ed38633bacb2c484b58af2e0c049f065c10f53c559161c
7
+ data.tar.gz: d038ec0da19622abb9c0b5835c714e8c91305ef372f82a7c119847eb59c48d88b39e1b41fbb691d2de891075f6b593b49ea63b8dbaf15545003bd277a5df86b9
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  /vendor
10
10
  kwyktree.dot
11
11
  kwyktree.svg
12
+ *.gem
data/README.md CHANGED
@@ -1,3 +1,28 @@
1
1
  # KwykTree
2
2
 
3
- Bug reports and pull requests are welcome on GitHub at https://github.com/dafyddcrosby/kwyktree
3
+ Know-What-You-Know Tree
4
+
5
+ This is a sort of proof-of-concept hyper-"Feynman notebook" graph. Definitely
6
+ not API stable yet.
7
+
8
+ This assumes that there's several ways of knowing something, and divides things
9
+ into abstract *concepts* and concrete *implementations*. An implementation is
10
+ constructed by multiple concepts, and concepts can be underpinned by other
11
+ concepts. There's a presupposition that if you understand the base concepts of
12
+ an implementation, then the understanding of the implementation should be
13
+ straightforward ('easy' in the [Rich Hickey
14
+ sense](https://archive.org/details/simple-made-easy-rich-hickey-2011)).
15
+
16
+ ## Running
17
+
18
+ ```bash
19
+ git clone https://github.com/dafyddcrosby/kwyktree.git
20
+ bundle install
21
+ bundle exec bin/kwyktree examples/filesystems.yaml
22
+ firefox kwyktree.svg
23
+ ```
24
+
25
+ ## Contributing
26
+
27
+ Bug reports and pull requests are welcome on GitHub at
28
+ https://github.com/dafyddcrosby/kwyktree
@@ -0,0 +1,36 @@
1
+ concepts:
2
+ - name: "filesystems"
3
+ deps:
4
+ - "concept.operating_systems"
5
+ - name: "filesystem_page_cache"
6
+ deps:
7
+ - "concept.filesystems"
8
+ - name: "filesystem_paging"
9
+ deps:
10
+ - "concept.filesystem_page_cache"
11
+ - name: "inode"
12
+ deps:
13
+ - "concept.filesystems"
14
+ - name: "symbolic_link"
15
+ deps:
16
+ - "concept.filesystems"
17
+ - name: "hard_link"
18
+ deps:
19
+ - "concept.filesystems"
20
+ - name: "sticky_bit"
21
+ deps:
22
+ - "concept.filesystems"
23
+ - name: "disk_partitioning"
24
+ deps:
25
+ - "concept.filesystems"
26
+ - name: "master_boot_record"
27
+ deps:
28
+ - "concept.disk_partitioning"
29
+ implementations:
30
+ - name: "fuse"
31
+ deps:
32
+ - "concept.filesystems"
33
+ - name: "unix_permissions"
34
+ deps:
35
+ - "concept.octal_number"
36
+ - "concept.filesystems"
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KwykTree
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kwyktree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Crosby
@@ -27,7 +27,8 @@ dependencies:
27
27
  description: Know-What-You-Know Tree
28
28
  email:
29
29
  - dave@dafyddcrosby.com
30
- executables: []
30
+ executables:
31
+ - kwyktree
31
32
  extensions: []
32
33
  extra_rdoc_files: []
33
34
  files:
@@ -41,8 +42,9 @@ files:
41
42
  - README.md
42
43
  - Rakefile
43
44
  - bin/console
44
- - bin/kwyktree
45
45
  - bin/setup
46
+ - examples/filesystems.yaml
47
+ - exe/kwyktree
46
48
  - kwyktree.gemspec
47
49
  - lib/kwyktree.rb
48
50
  - lib/kwyktree/unit.rb