speculate_about 0.6.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/speculations/parser/context/include.rb +1 -1
- data/lib/speculations/parser/context.rb +1 -1
- data/lib/speculations/parser/state/candidate.rb +3 -3
- data/lib/speculations/parser/state/context_maker.rb +16 -0
- data/lib/speculations/parser/state/in.rb +2 -2
- data/lib/speculations/parser/state/includes.rb +24 -0
- data/lib/speculations/parser/state/out.rb +2 -9
- data/lib/speculations/parser/state/triggers.rb +2 -2
- data/lib/speculations/parser/state.rb +1 -0
- data/lib/speculations/parser.rb +3 -1
- data/lib/speculations/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 418165840fa00627dbf34678bfc9eec5133565b4d9eaf697a8a748242b8fe759
|
4
|
+
data.tar.gz: 4a1cbab184f1b6861ef38112750e4783b257a19d61dbf19ae4a4385aed47fcde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 251c5d8c14c559797d1246aac8e1ba9cc269be9e68cbe496808768989ffaaf99d0fa2c60d4571ead528cecb7104a7ecee4335119bd28244a9f9678e906855bc1
|
7
|
+
data.tar.gz: 070a7aaa0842f8627876be6516bed4a9cf3615d738bda0d58f0414df4f6b72d5b49302e607960d33dcf524589a4304e3fa31ce30eef5968dfce94e496301e53c
|
@@ -11,17 +11,17 @@ module Speculations
|
|
11
11
|
new_parent = node.parent_of_level(level.pred)
|
12
12
|
node = new_parent.new_context(title: match[2], lnb: lnb, level: level)
|
13
13
|
[:out, node]
|
14
|
-
when match = State.maybe_example(line)
|
15
|
-
[:candidate, node, match[:title]]
|
16
14
|
when match = State.maybe_include(line)
|
17
15
|
[:candidate, node, :inc]
|
16
|
+
when match = State.maybe_example(line)
|
17
|
+
[:candidate, node, match[:title]]
|
18
18
|
when match = State.ruby_code_block(line)
|
19
19
|
if ctxt == :inc
|
20
20
|
node = node.new_include(lnb: lnb)
|
21
21
|
else
|
22
22
|
node = node.new_example(title: ctxt, lnb: lnb)
|
23
23
|
end
|
24
|
-
[:in, node]
|
24
|
+
[:in, node, (ctxt == :inc ? :includes : :out)]
|
25
25
|
else
|
26
26
|
[:out, node]
|
27
27
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Speculations
|
2
|
+
class Parser
|
3
|
+
module State
|
4
|
+
module ContextMaker
|
5
|
+
private
|
6
|
+
|
7
|
+
def make_new_context(lnb:, match:, node:)
|
8
|
+
level = match[:level].size
|
9
|
+
new_parent = node.parent_of_level(level.pred)
|
10
|
+
node = new_parent.new_context(title: match[:title], lnb: lnb, level: level)
|
11
|
+
[:out, node]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require_relative 'context_maker'
|
2
|
+
module Speculations
|
3
|
+
class Parser
|
4
|
+
module State
|
5
|
+
module Includes extend self
|
6
|
+
include ContextMaker
|
7
|
+
|
8
|
+
def parse line, lnb, node, _ctxt
|
9
|
+
case
|
10
|
+
when match = State.context_match(line)
|
11
|
+
make_new_context(lnb: lnb, node: node, match: match)
|
12
|
+
when match = State.maybe_include(line)
|
13
|
+
[:candidate, node, :inc]
|
14
|
+
when match = State.maybe_example(line)
|
15
|
+
[:candidate, node, match[:title]]
|
16
|
+
else
|
17
|
+
[:includes, node]
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -1,7 +1,9 @@
|
|
1
|
+
require_relative 'context_maker'
|
1
2
|
module Speculations
|
2
3
|
class Parser
|
3
4
|
module State
|
4
5
|
module Out extend self
|
6
|
+
include ContextMaker
|
5
7
|
|
6
8
|
def parse line, lnb, node, _ctxt
|
7
9
|
case
|
@@ -16,15 +18,6 @@ module Speculations
|
|
16
18
|
end
|
17
19
|
end
|
18
20
|
|
19
|
-
private
|
20
|
-
|
21
|
-
def make_new_context(lnb:, match:, node:)
|
22
|
-
level = match[:level].size
|
23
|
-
new_parent = node.parent_of_level(level.pred)
|
24
|
-
node = new_parent.new_context(title: match[:title], lnb: lnb, level: level)
|
25
|
-
[:out, node]
|
26
|
-
end
|
27
|
-
|
28
21
|
end
|
29
22
|
end
|
30
23
|
end
|
@@ -3,10 +3,10 @@ module Speculations::Parser::State::Triggers
|
|
3
3
|
BLANK_RGX = %r{\A\s*\z}
|
4
4
|
CONTEXT_RGX = %r[\A\s{0,3}(?<level>\#{1,7})\s+Context:?\s+(?<title>.*)]
|
5
5
|
EOBLOCK_RGX = %r[\A\s{0,3}```\s*\z]
|
6
|
-
GIVEN_RGX = %r[\A\s{0,3}(?:Given|When)\b]
|
6
|
+
GIVEN_RGX = %r[\A\s{0,3}(?:Given|When|And)\b]
|
7
7
|
EXAMPLE_RGX = %r[\A\s{0,3}Example:?\s+(<?title>.*)]
|
8
8
|
RUBY_RGX = %r[\A\s{0,3}```ruby]
|
9
|
-
THEN_RGX = %r[\A\s{0,3}(?:Then|But|And|Also)\b\s*(?<title>.*)]
|
9
|
+
THEN_RGX = %r[\A\s{0,3}(?:Then|But|And|Also|Or)\b\s*(?<title>.*)]
|
10
10
|
|
11
11
|
def blank_line line
|
12
12
|
BLANK_RGX.match(line)
|
data/lib/speculations/parser.rb
CHANGED
@@ -8,6 +8,7 @@ module Speculations
|
|
8
8
|
@__parsers__ ||= {
|
9
9
|
candidate: State::Candidate,
|
10
10
|
in: State::In,
|
11
|
+
includes: State::Includes,
|
11
12
|
out: State::Out
|
12
13
|
}
|
13
14
|
end
|
@@ -31,7 +32,8 @@ module Speculations
|
|
31
32
|
root = node = Context.new(filename: @filename)
|
32
33
|
ctxt = nil
|
33
34
|
@input.each_with_index do |line, lnb|
|
34
|
-
|
35
|
+
parser = self.class.parsers.fetch(@state)
|
36
|
+
@state, node, ctxt = parser.parse(line, lnb.succ, node, ctxt)
|
35
37
|
end
|
36
38
|
root
|
37
39
|
end
|
data/lib/speculations/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: speculate_about
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Dober
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Allows Markdown or other text files to be used as literal specs, à la
|
14
14
|
Elixr doctest, but from any file.
|
@@ -28,7 +28,9 @@ files:
|
|
28
28
|
- lib/speculations/parser/context/include.rb
|
29
29
|
- lib/speculations/parser/state.rb
|
30
30
|
- lib/speculations/parser/state/candidate.rb
|
31
|
+
- lib/speculations/parser/state/context_maker.rb
|
31
32
|
- lib/speculations/parser/state/in.rb
|
33
|
+
- lib/speculations/parser/state/includes.rb
|
32
34
|
- lib/speculations/parser/state/out.rb
|
33
35
|
- lib/speculations/parser/state/triggers.rb
|
34
36
|
- lib/speculations/version.rb
|