zotica 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3495563850307ddfd71f84190b03db6fdbb08c5a84bafe44394e77b02a8ddfea
4
- data.tar.gz: 6085901c9187f2967eadccdfc5c5b193687024e75be0169ce1440632d42a1ec2
3
+ metadata.gz: 19d167bb7b4ec60f1c4083d611e1fb1424540d8e433de2c4691f83d698aa5952
4
+ data.tar.gz: 5387db7fdacb2e84553296cf91027d4ae6b7b31968b724a912e9a6a8ae78ae2f
5
5
  SHA512:
6
- metadata.gz: 5c05a857ec98869264095212635801ee8150e0e229d8dc9367ccd759bed38403991e4ed9ae3fb2fbcd042da793527c9997fa7475f7e93aa090297d7779e116f9
7
- data.tar.gz: ce2d1f5d40eb325ee603a7ed4d612f626fe8a8221b33b286c210a3f4cdc0eca3705fe7acbca4d51086cc73c86c040188e5623e3742fd381c697d3558cc7f622b
6
+ metadata.gz: b82ba5566f7fd9a6dc6389ebf09076df1db0f7ec0d6408ee7e4bab707dd30e1dbcde5fd68ba6a39426b059e7e0583f20c1e74795433802c5197e782b6583b579
7
+ data.tar.gz: 3fe41b9a5925fc1a67fc669a0608f958da94ea6117ebe649062df7713625aeae73abc0d7f27c57d861259ab23b1e301e9f835a7835d7a3a55c1c930d97061d41
data/source/zotica.rb CHANGED
@@ -1,19 +1,19 @@
1
- # coding: utf-8
2
-
3
-
4
- module Zenithal
5
-
6
- ZOTICA_VERSION = "1.6.0"
7
- ZOTICA_VERSION_ARRAY = ZOTICA_VERSION.split(/\./).map(&:to_i)
8
-
9
- end
10
-
11
-
12
- require 'json'
13
- require 'rexml/document'
14
- require 'sassc'
15
- require 'ttfunk'
16
- require 'zenml'
17
-
18
- require_relative 'zotica/builder'
1
+ # coding: utf-8
2
+
3
+
4
+ module Zenithal
5
+
6
+ ZOTICA_VERSION = "1.7.0"
7
+ ZOTICA_VERSION_ARRAY = ZOTICA_VERSION.split(/\./).map(&:to_i)
8
+
9
+ end
10
+
11
+
12
+ require 'json'
13
+ require 'rexml/document'
14
+ require 'sassc'
15
+ require 'ttfunk'
16
+ require 'zenml'
17
+
18
+ require_relative 'zotica/builder'
19
19
  require_relative 'zotica/parser'
Binary file
Binary file
@@ -351,8 +351,8 @@
351
351
  "wr": ["≀", ["bin"]],
352
352
  "circ": ["∘", ["bin"]],
353
353
  "diamond": ["⋄", ["bin"]],
354
- "rtriangle": ["\uDB81\uDDA1", ["bin"]],
355
- "ltriangle": ["\uDB81\uDDA3", ["bin"]],
354
+ "rcomp": ["\uDB81\uDDA1", ["bin"]],
355
+ "lcomp": ["\uDB81\uDDA3", ["bin"]],
356
356
  "oplus": ["⊕", ["bin"]],
357
357
  "loplus": ["⨭", ["bin"]], "roplus": ["⨮", ["bin"]],
358
358
  "ominus": ["⊖", ["bin"]],
@@ -374,9 +374,13 @@
374
374
  "boxdot": ["⊡", ["bin"]],
375
375
  "boxcirc": ["⧇", ["bin"]],
376
376
  "boxast": ["⧆", ["bin"]],
377
- "rhombus": ["⬦", ["bin"]],
378
- "pentagon": ["⬠", ["bin"]],
379
- "hexagon": ["⬡", ["bin"]],
377
+ "rhombus": ["⬦", ["bin"]], "trhombus": ["⬦", ["ord"]],
378
+ "pentagon": ["⬠", ["bin"]], "tpentagon": ["⬠", ["ord"]],
379
+ "hexagon": ["⬡", ["bin"]], "thexagon": ["⬡", ["ord"]],
380
+ "utriangle": ["▵", ["bin"]], "tutriangle": ["▵", ["ord"]],
381
+ "dtriangle": ["▿", ["bin"]], "tdtriangle": ["▿", ["ord"]],
382
+ "rtriangle": ["▹", ["bin"]], "trtriangle": ["▹", ["ord"]],
383
+ "ltriangle": ["◃", ["bin"]], "tltriangle": ["◃", ["ord"]],
380
384
  "cap": ["∩", ["bin"]],
381
385
  "cup": ["∪", ["bin"]],
382
386
  "ccap": ["⋒", ["bin"]],
@@ -533,6 +537,9 @@
533
537
  "rmulti": ["⊸", ["rel"]], "brmulti": ["⊸", ["bin"]],
534
538
  "lmulti": ["⟜", ["rel"]], "blmulti": ["⟜", ["bin"]],
535
539
  "lrmulti": ["⧟", ["rel"]], "blrmulti": ["⧟", ["bin"]],
540
+ "openrarr": ["⇾", ["rel"]], "bopenrarr": ["⇾", ["bin"]],
541
+ "openlarr": ["⇽", ["rel"]], "bopenlarr": ["⇽", ["bin"]],
542
+ "lopenrarr": ["⇿", ["rel"]], "blopenrarr": ["⇿", ["bin"]],
536
543
  "hookrarr": ["↪", ["rel"]], "bhookrarr": ["↪", ["bin"]],
537
544
  "hooklarr": ["↩", ["rel"]], "bhooklarr": ["↩", ["bin"]],
538
545
  "tailrarr": ["↣", ["rel"]], "btailrarr": ["↣", ["bin"]],
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zotica
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ziphil
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exec
10
10
  cert_chain: []
11
- date: 2021-02-01 00:00:00.000000000 Z
11
+ date: 2021-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zenml
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
19
  version: 1.6.0
20
+ - - "~>"
21
+ - !ruby/object:Gem::Version
22
+ version: '1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '1'
30
27
  - - ">="
31
28
  - !ruby/object:Gem::Version
32
29
  version: 1.6.0
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: sassc
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -60,7 +60,7 @@ dependencies:
60
60
  version: '1'
61
61
  description: 'To be written.
62
62
 
63
- '
63
+ '
64
64
  email:
65
65
  - ziphil.shaleiras@gmail.com
66
66
  executables:
@@ -95,7 +95,7 @@ homepage: https://github.com/Ziphil/ZenithalMathWeb
95
95
  licenses:
96
96
  - MIT
97
97
  metadata: {}
98
- post_install_message:
98
+ post_install_message:
99
99
  rdoc_options: []
100
100
  require_paths:
101
101
  - source
@@ -110,8 +110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  requirements: []
113
- rubygems_version: 3.0.3
114
- signing_key:
113
+ rubygems_version: 3.2.3
114
+ signing_key:
115
115
  specification_version: 4
116
116
  summary: Web rendering engine for mathematical formulae
117
117
  test_files: []