utopia-project 0.17.4 → 0.19.0
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
- checksums.yaml.gz.sig +0 -0
- data/bake/utopia/project.rb +15 -2
- data/lib/utopia/project/document.rb +2 -2
- data/lib/utopia/project/guide.rb +1 -1
- data/lib/utopia/project/renderer.rb +46 -0
- data/lib/utopia/project/version.rb +1 -1
- data/pages/_page.xnode +8 -1
- data/public/_components/mermaid/mermaid.min.js +3 -0
- data/public/_components/mermaid/mermaid.min.js.LICENSE.txt +32 -0
- data/public/_static/site.css +5 -0
- data.tar.gz.sig +0 -0
- metadata +13 -9
- metadata.gz.sig +0 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
/*!
|
2
|
+
* Wait for document loaded before starting the execution
|
3
|
+
*/
|
4
|
+
|
5
|
+
/*! @license DOMPurify 2.3.4 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.4/LICENSE */
|
6
|
+
|
7
|
+
/*! Check if previously processed */
|
8
|
+
|
9
|
+
/*! sequence config was passed as #1 */
|
10
|
+
|
11
|
+
/**
|
12
|
+
* @license
|
13
|
+
* Copyright (c) 2012-2013 Chris Pettitt
|
14
|
+
*
|
15
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
16
|
+
* of this software and associated documentation files (the "Software"), to deal
|
17
|
+
* in the Software without restriction, including without limitation the rights
|
18
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
19
|
+
* copies of the Software, and to permit persons to whom the Software is
|
20
|
+
* furnished to do so, subject to the following conditions:
|
21
|
+
*
|
22
|
+
* The above copyright notice and this permission notice shall be included in
|
23
|
+
* all copies or substantial portions of the Software.
|
24
|
+
*
|
25
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
26
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
27
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
28
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
29
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
30
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
31
|
+
* THE SOFTWARE.
|
32
|
+
*/
|
data/public/_static/site.css
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: utopia-project
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
|
+
- Olle Jonsson
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain:
|
@@ -36,7 +37,7 @@ cert_chain:
|
|
36
37
|
RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
|
37
38
|
HiLJ8VOFx6w=
|
38
39
|
-----END CERTIFICATE-----
|
39
|
-
date:
|
40
|
+
date: 2022-04-20 00:00:00.000000000 Z
|
40
41
|
dependencies:
|
41
42
|
- !ruby/object:Gem::Dependency
|
42
43
|
name: decode
|
@@ -72,28 +73,28 @@ dependencies:
|
|
72
73
|
requirements:
|
73
74
|
- - "~>"
|
74
75
|
- !ruby/object:Gem::Version
|
75
|
-
version: '0.
|
76
|
+
version: '0.7'
|
76
77
|
type: :runtime
|
77
78
|
prerelease: false
|
78
79
|
version_requirements: !ruby/object:Gem::Requirement
|
79
80
|
requirements:
|
80
81
|
- - "~>"
|
81
82
|
- !ruby/object:Gem::Version
|
82
|
-
version: '0.
|
83
|
+
version: '0.7'
|
83
84
|
- !ruby/object:Gem::Dependency
|
84
85
|
name: rackula
|
85
86
|
requirement: !ruby/object:Gem::Requirement
|
86
87
|
requirements:
|
87
|
-
- - "
|
88
|
+
- - "~>"
|
88
89
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
90
|
+
version: '1.3'
|
90
91
|
type: :runtime
|
91
92
|
prerelease: false
|
92
93
|
version_requirements: !ruby/object:Gem::Requirement
|
93
94
|
requirements:
|
94
|
-
- - "
|
95
|
+
- - "~>"
|
95
96
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
97
|
+
version: '1.3'
|
97
98
|
- !ruby/object:Gem::Dependency
|
98
99
|
name: thread-local
|
99
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -205,6 +206,7 @@ files:
|
|
205
206
|
- lib/utopia/project/document.rb
|
206
207
|
- lib/utopia/project/guide.rb
|
207
208
|
- lib/utopia/project/linkify.rb
|
209
|
+
- lib/utopia/project/renderer.rb
|
208
210
|
- lib/utopia/project/version.rb
|
209
211
|
- pages/_header.xnode
|
210
212
|
- pages/_heading.xnode
|
@@ -301,6 +303,8 @@ files:
|
|
301
303
|
- public/_components/jquery/jquery.slim.js
|
302
304
|
- public/_components/jquery/jquery.slim.min.js
|
303
305
|
- public/_components/jquery/jquery.slim.min.map
|
306
|
+
- public/_components/mermaid/mermaid.min.js
|
307
|
+
- public/_components/mermaid/mermaid.min.js.LICENSE.txt
|
304
308
|
- public/_static/icon.png
|
305
309
|
- public/_static/links.js
|
306
310
|
- public/_static/site.css
|
@@ -328,7 +332,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
328
332
|
- !ruby/object:Gem::Version
|
329
333
|
version: '0'
|
330
334
|
requirements: []
|
331
|
-
rubygems_version: 3.
|
335
|
+
rubygems_version: 3.1.6
|
332
336
|
signing_key:
|
333
337
|
specification_version: 4
|
334
338
|
summary: A project documentation tool based on Utopia.
|
metadata.gz.sig
CHANGED
Binary file
|