decode 0.20.0 → 0.20.1

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: 742b2c4908ded7f357fdba5f4a65da4714720307a86dcce2ef6d7da2fbb3e8ec
4
- data.tar.gz: 5c4f90dc81fc5706afb3b55c530c88fa520705a26d1998e7dec76349bb039653
3
+ metadata.gz: cad37ec3456d7b6edc9bcfa36c28b4f05c83ba978fed9a1989d0c0daba8b12c9
4
+ data.tar.gz: 559c5b61c73b58f420591361502c76f81e168c74e1c425dfcb2a89bf4766c9d9
5
5
  SHA512:
6
- metadata.gz: c8b3aaf6638b577b4efe790adac6689a0825afcb70644f8ae9d15990281bdc4d60bf052f46ed1fca548ec645edd573b94d35dd56b1b94528abbbab46f059bd9b
7
- data.tar.gz: b9c6efcc4f6817924c95042c8c03b4fb6a040a5fc98e77d94cd19efa7d3c069ad7667c73bf1237196058f0c7b7ad7de6bf34a4ffcac20309bfdf610573987a91
6
+ metadata.gz: b1e7915cb517d46bc9372734244045bffe3bd32acaae6bd7cb3f4dd7eaef9240faf74b63bff4249a7d7fc7a7ab2623aff4178d41eb0a4875f735fcd724ff6fd2
7
+ data.tar.gz: a79d14e85375ecf5a7aa3a961ee42033bb3381b9f057472a7126b2dbde8be2cf2fd3d2eab0bd55a371e03f3085f2ed6bf3525c0b047284dd996a6b68c8756a20
checksums.yaml.gz.sig CHANGED
Binary file
data/bake/decode/index.rb CHANGED
@@ -52,3 +52,26 @@ def symbols(root)
52
52
  descend.call
53
53
  end
54
54
  end
55
+
56
+ # Print documentation for all definitions.
57
+ # @parameter root [String] The root path to index.
58
+ def documentation(root)
59
+ require 'build/files/glob'
60
+ require 'decode/index'
61
+
62
+ paths = Build::Files::Path.expand(root).glob("**/*")
63
+
64
+ index = Decode::Index.new
65
+ index.update(paths)
66
+
67
+ index.definitions.each do |name, definition|
68
+ comments = definition.comments
69
+
70
+ if comments
71
+ puts "## `#{name}`"
72
+ puts
73
+ puts comments
74
+ puts
75
+ end
76
+ end
77
+ end
@@ -47,7 +47,7 @@ module Decode
47
47
  end
48
48
  end
49
49
 
50
- # Any lines of text associated wtih this node.
50
+ # Any lines of text associated with this node.
51
51
  # @returns [Array(String) | Nil] The lines of text.
52
52
  def text
53
53
  if text = self.extract_text
@@ -55,8 +55,7 @@ module Decode
55
55
  end
56
56
  end
57
57
 
58
- # Traverse the tags from this node using {each}.
59
- # Invoke `descend.call(child)` to recursively traverse the specified child.
58
+ # Traverse the tags from this node using {each}. Invoke `descend.call(child)` to recursively traverse the specified child.
60
59
  #
61
60
  # @yields {|node, descend| descend.call}
62
61
  # @parameter node [Node] The current node which is being traversed.
@@ -4,5 +4,5 @@
4
4
  # Copyright, 2020-2022, by Samuel Williams.
5
5
 
6
6
  module Decode
7
- VERSION = "0.20.0"
7
+ VERSION = "0.20.1"
8
8
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decode
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -37,7 +37,7 @@ cert_chain:
37
37
  Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
38
38
  voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
39
39
  -----END CERTIFICATE-----
40
- date: 2023-06-04 00:00:00.000000000 Z
40
+ date: 2023-12-04 00:00:00.000000000 Z
41
41
  dependencies:
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: parser
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  requirements: []
128
- rubygems_version: 3.4.7
128
+ rubygems_version: 3.4.22
129
129
  signing_key:
130
130
  specification_version: 4
131
131
  summary: Code analysis for documentation generation.
metadata.gz.sig CHANGED
Binary file