Skip to content

Commit 8101e9e

Browse files
committed
Update examples to v1.3.0
1 parent be2726e commit 8101e9e

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

build/dev.vbs

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ SpecsFolder = ".\specs\"
3131
Dim BlankWorkbookPath
3232
Dim BlankInlineWorkbookPath
3333
Dim SpecsWorkbookPath
34+
Dim ExampleInlineWorkbookPath
35+
Dim ExampleDisplayWorkbookPath
3436
BlankWorkbookPath = ".\Excel-TDD - Blank.xlsm"
3537
BlankInlineWorkbookPath = ".\Excel-TDD - Blank - Inline.xlsm"
3638
SpecsWorkbookPath = ".\specs\Excel-TDD - Specs.xlsm"
39+
ExampleInlineWorkbookPath = ".\examples\Excel-TDD - Example - Inline.xlsm"
40+
ExampleDisplayWorkbookPath = ".\examples\Excel-TDD - Example - Runner.xlsm"
3741

3842
Dim Src
3943
Src = Array( _
@@ -95,8 +99,8 @@ End Sub
9599
Sub Development
96100
PrintLn vbNewLine & _
97101
"Options:" & vbNewLine & _
98-
"- import [src/specs/inline/display/extensions/helpers/all] to [blank/inline/display/specs/all/path...]" & vbNewLine & _
99-
"- export [src/specs/inline/display/extensions/helpers/all] from [blank/inline/display/specs/all/path...]" & vbNewLine & _
102+
"- import [src/specs/inline/display/extensions/helpers/all] to [blank/inline/display/specs/example-inline/example-display/all/path...]" & vbNewLine & _
103+
"- export [src/specs/inline/display/extensions/helpers/all] from [blank/inline/display/specs/all/example-inline/example-display/path...]" & vbNewLine & _
100104
"- release"
101105

102106
Dim Action
@@ -122,6 +126,10 @@ Sub Development
122126
Execute "import", "helpers", "specs"
123127
Execute "import", "specs", "specs"
124128
Execute "import", "inline", "specs"
129+
Execute "import", "inline", "example-inline"
130+
Execute "import", "display", "example-display"
131+
Execute "import", "extensions", "example-display"
132+
Execute "import", "helpers", "example-display"
125133
ElseIf UBound(Parts) < 3 Or (UCase(Parts(0)) <> "IMPORT" And UCase(Parts(0)) <> "EXPORT") Then
126134
PrintLn vbNewLine & "Error: Unrecognized action"
127135
Else
@@ -161,8 +169,12 @@ Sub Execute(Name, ModulesDescription, WorkbookDescription)
161169
Paths = Array(BlankWorkbookPath)
162170
Case "SPECS"
163171
Paths = Array(SpecsWorkbookPath)
172+
Case "EXAMPLE-INLINE"
173+
Paths = Array(ExampleInlineWorkbookPath)
174+
Case "EXAMPLE-DISPLAY"
175+
Paths = Array(ExampleDisplayWorkbookPath)
164176
Case "ALL"
165-
Paths = Array(BlankWorkbookPath, BlankInlineWorkbookPath, SpecsWorkbookPath)
177+
Paths = Array(BlankWorkbookPath, BlankInlineWorkbookPath, SpecsWorkbookPath, ExampleInlineWorkbookPath, ExampleDisplayWorkbookPath)
166178
Case Else
167179
Paths = Array(WorkbookDescription)
168180
End Select
-6.55 KB
Binary file not shown.
-13.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)