decode 0.14.1 → 0.15.4
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/lib/decode/definition.rb +2 -0
- data/lib/decode/language/reference.rb +27 -6
- data/lib/decode/language/ruby.rb +5 -0
- data/lib/decode/language/ruby/code.rb +85 -0
- data/lib/decode/language/ruby/definition.rb +4 -4
- data/lib/decode/language/ruby/module.rb +6 -0
- data/lib/decode/language/ruby/parser.rb +2 -2
- data/lib/decode/language/ruby/reference.rb +31 -0
- data/lib/decode/source.rb +11 -11
- data/lib/decode/syntax/link.rb +44 -0
- data/lib/decode/syntax/match.rb +53 -0
- data/lib/decode/syntax/rewriter.rb +70 -0
- data/lib/decode/version.rb +1 -1
- metadata +15 -39
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e72d09d01f600b6c256246f13059690b23f49c0698b7b31e24421e928b73fcd
|
4
|
+
data.tar.gz: e582753a3e97b18d0a2ab7d5cde6998eb28f32c6128462bc869dc822bb5bd66d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fe459bba1a7675f1ce6e5bfa788765f2f0acc489e5b16d8b77896c62f5e7bb8a3ca08ca25fc579965613bb7cc38f0972a9b00b15d47a19a0df5a64d610e4f65
|
7
|
+
data.tar.gz: bbd9fc07585e0fdc5c7fab11ce2cb2b321b2ceb38e0c28e483347ac68547845e9b57d109bd4ff691a32372c14c556026ea42a7c5cf1e94537dae3e68633b954a
|
data/lib/decode/definition.rb
CHANGED
@@ -24,11 +24,11 @@ module Decode
|
|
24
24
|
class Reference
|
25
25
|
# Initialize the reference.
|
26
26
|
# @parameter identifier [String] The identifier part of the reference.
|
27
|
-
def initialize(identifier, language)
|
27
|
+
def initialize(identifier, language, lexical_path = nil)
|
28
28
|
@identifier = identifier
|
29
29
|
@language = language
|
30
30
|
|
31
|
-
@lexical_path =
|
31
|
+
@lexical_path = lexical_path
|
32
32
|
@path = nil
|
33
33
|
end
|
34
34
|
|
@@ -67,14 +67,35 @@ module Decode
|
|
67
67
|
@lexical_path ||= self.split(@identifier)
|
68
68
|
end
|
69
69
|
|
70
|
+
def priority(definition, prefix)
|
71
|
+
if prefix.nil?
|
72
|
+
return 1
|
73
|
+
elsif definition.start_with?(prefix)
|
74
|
+
return 0
|
75
|
+
else
|
76
|
+
return 2
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
70
80
|
def best(definitions)
|
71
81
|
prefix, name = lexical_path.last
|
72
82
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
83
|
+
first = nil
|
84
|
+
without_prefix = nil
|
85
|
+
|
86
|
+
definitions.each do |definition|
|
87
|
+
first ||= definition
|
88
|
+
|
89
|
+
next unless definition.language == @language
|
90
|
+
|
91
|
+
if prefix.nil?
|
92
|
+
without_prefix ||= definition
|
93
|
+
elsif definition.start_with?(prefix)
|
94
|
+
return definition
|
95
|
+
end
|
77
96
|
end
|
97
|
+
|
98
|
+
return without_prefix || first
|
78
99
|
end
|
79
100
|
|
80
101
|
# The lexical path of the reference.
|
data/lib/decode/language/ruby.rb
CHANGED
@@ -20,6 +20,7 @@
|
|
20
20
|
|
21
21
|
require_relative 'ruby/reference'
|
22
22
|
require_relative 'ruby/parser'
|
23
|
+
require_relative 'ruby/code'
|
23
24
|
|
24
25
|
require_relative '../comment/tags'
|
25
26
|
require_relative '../comment/parameter'
|
@@ -86,6 +87,10 @@ module Decode
|
|
86
87
|
def self.segments_for(input, &block)
|
87
88
|
Parser.new.segments_for(input, &block)
|
88
89
|
end
|
90
|
+
|
91
|
+
def self.code_for(text, index, relative_to: nil)
|
92
|
+
Code.new(text, index, relative_to: relative_to, language: self)
|
93
|
+
end
|
89
94
|
end
|
90
95
|
end
|
91
96
|
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require_relative 'definition'
|
22
|
+
require_relative '../../syntax/link'
|
23
|
+
|
24
|
+
require 'parser/current'
|
25
|
+
|
26
|
+
module Decode
|
27
|
+
module Language
|
28
|
+
module Ruby
|
29
|
+
# A Ruby-specific block of code.
|
30
|
+
class Code
|
31
|
+
def initialize(text, index, relative_to: nil, language: relative_to&.language)
|
32
|
+
@text = text
|
33
|
+
@root = ::Parser::CurrentRuby.parse(text)
|
34
|
+
@index = index
|
35
|
+
@relative_to = relative_to
|
36
|
+
@language = language
|
37
|
+
end
|
38
|
+
|
39
|
+
attr :text
|
40
|
+
|
41
|
+
attr :language
|
42
|
+
|
43
|
+
def extract(into = [])
|
44
|
+
if @index
|
45
|
+
traverse(@root, into)
|
46
|
+
end
|
47
|
+
|
48
|
+
return into
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def traverse(node, into)
|
54
|
+
case node&.type
|
55
|
+
when :send
|
56
|
+
if reference = Reference.from_const(node, @language)
|
57
|
+
if definition = @index.lookup(reference, relative_to: @relative_to)
|
58
|
+
expression = node.location.selector
|
59
|
+
range = expression.begin_pos...expression.end_pos
|
60
|
+
into << Syntax::Link.new(range, definition)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Extract constants from arguments:
|
65
|
+
children = node.children[2..-1].each do |node|
|
66
|
+
traverse(node, into)
|
67
|
+
end
|
68
|
+
when :const
|
69
|
+
if reference = Reference.from_const(node, @language)
|
70
|
+
if definition = @index.lookup(reference, relative_to: @relative_to)
|
71
|
+
expression = node.location.name
|
72
|
+
range = expression.begin_pos...expression.end_pos
|
73
|
+
into << Syntax::Link.new(range, definition)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
when :begin
|
77
|
+
node.children.each do |child|
|
78
|
+
traverse(child, into)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
@@ -51,10 +51,10 @@ module Decode
|
|
51
51
|
if lines.count == 1
|
52
52
|
return lines.first
|
53
53
|
else
|
54
|
-
indentation = expression.source_line[/\A\s+/]
|
55
|
-
|
56
|
-
|
57
|
-
|
54
|
+
if indentation = expression.source_line[/\A\s+/]
|
55
|
+
# Remove all the indentation:
|
56
|
+
lines.each{|line| line.sub!(indentation, '')}
|
57
|
+
end
|
58
58
|
|
59
59
|
return lines.join
|
60
60
|
end
|
@@ -42,6 +42,12 @@ module Decode
|
|
42
42
|
|
43
43
|
# The long form is the same as the short form.
|
44
44
|
alias long_form short_form
|
45
|
+
|
46
|
+
# The fully qualified name of the class.
|
47
|
+
# e.g. `module ::Barnyard::Dog`.
|
48
|
+
def qualified_form
|
49
|
+
"module #{self.qualified_name}"
|
50
|
+
end
|
45
51
|
end
|
46
52
|
end
|
47
53
|
end
|
@@ -40,7 +40,7 @@ module Decode
|
|
40
40
|
class Parser
|
41
41
|
# Extract definitions from the given input file.
|
42
42
|
def definitions_for(input, &block)
|
43
|
-
top, comments = ::Parser::CurrentRuby.parse_with_comments(input
|
43
|
+
top, comments = ::Parser::CurrentRuby.parse_with_comments(input)
|
44
44
|
|
45
45
|
if top
|
46
46
|
walk_definitions(top, comments, &block)
|
@@ -241,7 +241,7 @@ module Decode
|
|
241
241
|
|
242
242
|
# Extract segments from the given input file.
|
243
243
|
def segments_for(input, &block)
|
244
|
-
top, comments = ::Parser::CurrentRuby.parse_with_comments(input
|
244
|
+
top, comments = ::Parser::CurrentRuby.parse_with_comments(input)
|
245
245
|
|
246
246
|
# We delete any leading comments:
|
247
247
|
line = 0
|
@@ -25,6 +25,37 @@ module Decode
|
|
25
25
|
module Ruby
|
26
26
|
# An Ruby-specific reference which can be resolved to zero or more definitions.
|
27
27
|
class Reference < Language::Reference
|
28
|
+
def self.from_const(node, language)
|
29
|
+
lexical_path = append_const(node)
|
30
|
+
|
31
|
+
return self.new(node.location.expression.source, language, lexical_path)
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.append_const(node, path = [])
|
35
|
+
parent, name = node.children
|
36
|
+
|
37
|
+
if parent and parent.type != :cbase
|
38
|
+
append_const(parent, path)
|
39
|
+
end
|
40
|
+
|
41
|
+
case node.type
|
42
|
+
when :const
|
43
|
+
if parent && parent.type != :cbase
|
44
|
+
path << ['::', name]
|
45
|
+
else
|
46
|
+
path << [nil, name]
|
47
|
+
end
|
48
|
+
when :send
|
49
|
+
path << ['#', name]
|
50
|
+
when :cbase
|
51
|
+
# Ignore.
|
52
|
+
else
|
53
|
+
raise ArgumentError, "Could not determine reference for #{node}!"
|
54
|
+
end
|
55
|
+
|
56
|
+
return path
|
57
|
+
end
|
58
|
+
|
28
59
|
def split(text)
|
29
60
|
text.scan(/(::|\.|#|:)?([^:.#]+)/)
|
30
61
|
end
|
data/lib/decode/source.rb
CHANGED
@@ -25,6 +25,7 @@ module Decode
|
|
25
25
|
class Source
|
26
26
|
def initialize(path, language)
|
27
27
|
@path = path
|
28
|
+
@buffer = nil
|
28
29
|
@language = language
|
29
30
|
end
|
30
31
|
|
@@ -36,11 +37,10 @@ module Decode
|
|
36
37
|
# @attribute [Language::Generic]
|
37
38
|
attr :language
|
38
39
|
|
39
|
-
#
|
40
|
-
# @
|
41
|
-
|
42
|
-
|
43
|
-
File.open(@path, &block)
|
40
|
+
# Read the source file into an internal buffer/cache.
|
41
|
+
# @returns [String]
|
42
|
+
def read
|
43
|
+
@buffer ||= File.read(@path).freeze
|
44
44
|
end
|
45
45
|
|
46
46
|
# Open the source file and read all definitions.
|
@@ -50,9 +50,7 @@ module Decode
|
|
50
50
|
def definitions(&block)
|
51
51
|
return to_enum(:definitions) unless block_given?
|
52
52
|
|
53
|
-
self.
|
54
|
-
@language.definitions_for(file, &block)
|
55
|
-
end
|
53
|
+
@language.definitions_for(self.read, &block)
|
56
54
|
end
|
57
55
|
|
58
56
|
# Open the source file and read all segments.
|
@@ -62,9 +60,11 @@ module Decode
|
|
62
60
|
def segments(&block)
|
63
61
|
return to_enum(:segments) unless block_given?
|
64
62
|
|
65
|
-
self.
|
66
|
-
|
67
|
-
|
63
|
+
@language.segments_for(self.read, &block)
|
64
|
+
end
|
65
|
+
|
66
|
+
def code(index = nil, relative_to: nil)
|
67
|
+
@language.code_for(self.read, index, relative_to: relative_to)
|
68
68
|
end
|
69
69
|
end
|
70
70
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
require_relative 'match'
|
22
|
+
|
23
|
+
module Decode
|
24
|
+
module Syntax
|
25
|
+
class Link < Match
|
26
|
+
def initialize(range, definition)
|
27
|
+
@definition = definition
|
28
|
+
|
29
|
+
super(range)
|
30
|
+
end
|
31
|
+
|
32
|
+
attr :definition
|
33
|
+
|
34
|
+
def apply(output, rewriter)
|
35
|
+
output << rewriter.link_to(
|
36
|
+
@definition,
|
37
|
+
rewriter.text_for(@range)
|
38
|
+
)
|
39
|
+
|
40
|
+
return self.size
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Decode
|
22
|
+
module Syntax
|
23
|
+
class Match
|
24
|
+
def initialize(range)
|
25
|
+
@range = range
|
26
|
+
end
|
27
|
+
|
28
|
+
attr :range
|
29
|
+
|
30
|
+
def apply(source)
|
31
|
+
return source[range]
|
32
|
+
end
|
33
|
+
|
34
|
+
def <=> other
|
35
|
+
@range.min <=> other.range.min
|
36
|
+
end
|
37
|
+
|
38
|
+
def offset
|
39
|
+
@range.min
|
40
|
+
end
|
41
|
+
|
42
|
+
def size
|
43
|
+
@range.size
|
44
|
+
end
|
45
|
+
|
46
|
+
def apply(output, rewriter)
|
47
|
+
output << rewriter.text_for(@range)
|
48
|
+
|
49
|
+
return self.size
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
8
|
+
# furnished to do so, subject to the following conditions:
|
9
|
+
#
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
11
|
+
# all copies or substantial portions of the Software.
|
12
|
+
#
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
# THE SOFTWARE.
|
20
|
+
|
21
|
+
module Decode
|
22
|
+
module Syntax
|
23
|
+
class Rewriter
|
24
|
+
def initialize(text)
|
25
|
+
@text = text
|
26
|
+
@matches = []
|
27
|
+
end
|
28
|
+
|
29
|
+
attr :text
|
30
|
+
|
31
|
+
attr :matches
|
32
|
+
|
33
|
+
def << match
|
34
|
+
@matches << match
|
35
|
+
end
|
36
|
+
|
37
|
+
# Returns a chunk of raw text with no formatting.
|
38
|
+
def text_for(range)
|
39
|
+
@text[range]
|
40
|
+
end
|
41
|
+
|
42
|
+
def apply(output = [])
|
43
|
+
offset = 0
|
44
|
+
|
45
|
+
@matches.sort.each do |match|
|
46
|
+
if match.offset > offset
|
47
|
+
output << text_for(offset...match.offset)
|
48
|
+
|
49
|
+
offset = match.offset
|
50
|
+
elsif match.offset < offset
|
51
|
+
# Match intersects last output buffer.
|
52
|
+
next
|
53
|
+
end
|
54
|
+
|
55
|
+
offset += match.apply(output, self)
|
56
|
+
end
|
57
|
+
|
58
|
+
if offset < @text.size
|
59
|
+
output << text_for(offset...@text.size)
|
60
|
+
end
|
61
|
+
|
62
|
+
return output
|
63
|
+
end
|
64
|
+
|
65
|
+
def link_to(definition, text)
|
66
|
+
"[#{text}]"
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
data/lib/decode/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decode
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parser
|
@@ -39,21 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: utopia-project
|
42
|
+
name: bundler
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
45
|
- - ">="
|
@@ -80,20 +66,6 @@ dependencies:
|
|
80
66
|
- - ">="
|
81
67
|
- !ruby/object:Gem::Version
|
82
68
|
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: bundler
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
69
|
- !ruby/object:Gem::Dependency
|
98
70
|
name: rspec
|
99
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,9 +80,8 @@ dependencies:
|
|
108
80
|
- - ">="
|
109
81
|
- !ruby/object:Gem::Version
|
110
82
|
version: '0'
|
111
|
-
description:
|
83
|
+
description:
|
112
84
|
email:
|
113
|
-
- samuel.williams@oriontransfer.co.nz
|
114
85
|
executables: []
|
115
86
|
extensions: []
|
116
87
|
extra_rdoc_files: []
|
@@ -139,6 +110,7 @@ files:
|
|
139
110
|
- lib/decode/language/ruby/block.rb
|
140
111
|
- lib/decode/language/ruby/call.rb
|
141
112
|
- lib/decode/language/ruby/class.rb
|
113
|
+
- lib/decode/language/ruby/code.rb
|
142
114
|
- lib/decode/language/ruby/constant.rb
|
143
115
|
- lib/decode/language/ruby/definition.rb
|
144
116
|
- lib/decode/language/ruby/function.rb
|
@@ -151,19 +123,23 @@ files:
|
|
151
123
|
- lib/decode/scope.rb
|
152
124
|
- lib/decode/segment.rb
|
153
125
|
- lib/decode/source.rb
|
126
|
+
- lib/decode/syntax/link.rb
|
127
|
+
- lib/decode/syntax/match.rb
|
128
|
+
- lib/decode/syntax/rewriter.rb
|
154
129
|
- lib/decode/trie.rb
|
155
130
|
- lib/decode/version.rb
|
156
131
|
homepage: https://github.com/ioquatix/decode
|
157
132
|
licenses:
|
158
133
|
- MIT
|
159
|
-
metadata:
|
160
|
-
|
134
|
+
metadata:
|
135
|
+
funding_uri: https://github.com/sponsors/ioquatix/
|
136
|
+
post_install_message:
|
161
137
|
rdoc_options: []
|
162
138
|
require_paths:
|
163
139
|
- lib
|
164
140
|
required_ruby_version: !ruby/object:Gem::Requirement
|
165
141
|
requirements:
|
166
|
-
- - "
|
142
|
+
- - ">="
|
167
143
|
- !ruby/object:Gem::Version
|
168
144
|
version: '2.5'
|
169
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -172,8 +148,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
172
148
|
- !ruby/object:Gem::Version
|
173
149
|
version: '0'
|
174
150
|
requirements: []
|
175
|
-
rubygems_version: 3.
|
176
|
-
signing_key:
|
151
|
+
rubygems_version: 3.0.3
|
152
|
+
signing_key:
|
177
153
|
specification_version: 4
|
178
154
|
summary: Code analysis for documentation generation.
|
179
155
|
test_files: []
|