dtr_core 0.12.1 → 0.12.2
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/dtr_core/user_defined_type.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80562b71d3e4df50c402ade0b30641d3dc5557dcc67c05fa948edd5d5007ff83
|
4
|
+
data.tar.gz: 42b2d9d62e6344cb48fb7b31a6c2d7018a11991668b491662c8636256d0b6d78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afc3ec8215703100fdfe3d9298b8fe11a3971a8e8fa7199621e3c53fb6ab2dbada13a86005ec4c87d70d6d85398bfdd35346f3736b61a3f430abcba151272317
|
7
|
+
data.tar.gz: 05bca2e00b4a2ef8a05fd832a44ffd510761bde4f17896f24e6543b10dd27aa15488998c2e7132c665385dd33e95a69ceafc81c3452aceb2793ddc5ab660b3fc
|
@@ -44,7 +44,7 @@ module DTRCore
|
|
44
44
|
end
|
45
45
|
|
46
46
|
def to_s
|
47
|
-
"\t* (#{name})\n\t{\n#{@attributes.map { |x| "\t\t#{x[
|
47
|
+
"\t* (#{name})\n\t{\n#{@attributes.map { |x| "\t\t#{x['name']}: #{x['type']}" }.join("\n")}\n\t}"
|
48
48
|
end
|
49
49
|
|
50
50
|
def ==(other)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dtr_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Durst
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |+
|
14
14
|
Ruby gem serving as the reference implementation for the parsing and consumption of Digicus Textual Representation (DTR). We expect folks to leverage this gem when writing Digicus compiler plugins.
|