lutaml-store 0.1.1
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 +7 -0
- data/.github/workflows/main.yml +27 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +10 -0
- data/.rubocop_todo.yml +450 -0
- data/CLAUDE.md +57 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/CORRECTED_HTTP_CACHE_IMPLEMENTATION.md +209 -0
- data/CORRECTED_HTTP_CACHE_PLAN.md +164 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +220 -0
- data/README.adoc +1430 -0
- data/Rakefile +12 -0
- data/TODO.impl/0-lutaml-store-self-quality.md +112 -0
- data/TODO.impl/1-lutaml-hal-migration.md +60 -0
- data/TODO.impl/2-glossarist-migration.md +359 -0
- data/TODO.impl/3-lutaml-jsonschema-migration.md +273 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/demo/Gemfile +15 -0
- data/demo/Gemfile.lock +61 -0
- data/demo/README.adoc +301 -0
- data/demo/data/vcards/co/contact_10_thompson.data +1 -0
- data/demo/data/vcards/co/contact_10_thompson.meta +1 -0
- data/demo/data/vcards/co/contact_1_doe.data +1 -0
- data/demo/data/vcards/co/contact_1_doe.meta +1 -0
- data/demo/data/vcards/co/contact_2_smith.data +1 -0
- data/demo/data/vcards/co/contact_2_smith.meta +1 -0
- data/demo/data/vcards/co/contact_3_johnson.data +1 -0
- data/demo/data/vcards/co/contact_3_johnson.meta +1 -0
- data/demo/data/vcards/co/contact_4_garcia.data +1 -0
- data/demo/data/vcards/co/contact_4_garcia.meta +1 -0
- data/demo/data/vcards/co/contact_5_wilson.data +1 -0
- data/demo/data/vcards/co/contact_5_wilson.meta +1 -0
- data/demo/data/vcards/co/contact_6_brown.data +1 -0
- data/demo/data/vcards/co/contact_6_brown.meta +1 -0
- data/demo/data/vcards/co/contact_7_davis.data +1 -0
- data/demo/data/vcards/co/contact_7_davis.meta +1 -0
- data/demo/data/vcards/co/contact_8_anderson.data +1 -0
- data/demo/data/vcards/co/contact_8_anderson.meta +1 -0
- data/demo/data/vcards/co/contact_9_taylor.data +1 -0
- data/demo/data/vcards/co/contact_9_taylor.meta +1 -0
- data/demo/data/vcards.db +0 -0
- data/demo/pottery_class_demo.rb +164 -0
- data/demo/vcard_models.rb +140 -0
- data/demo/vcard_store_demo.rb +526 -0
- data/lib/lutaml/store/adapter/base.rb +65 -0
- data/lib/lutaml/store/adapter/filesystem.rb +288 -0
- data/lib/lutaml/store/adapter/memory.rb +225 -0
- data/lib/lutaml/store/adapter/sqlite.rb +193 -0
- data/lib/lutaml/store/adapter.rb +12 -0
- data/lib/lutaml/store/attribute_updater.rb +198 -0
- data/lib/lutaml/store/basic_store.rb +190 -0
- data/lib/lutaml/store/cache.rb +108 -0
- data/lib/lutaml/store/cache_store.rb +282 -0
- data/lib/lutaml/store/composite_model_handler.rb +169 -0
- data/lib/lutaml/store/compression.rb +137 -0
- data/lib/lutaml/store/config.rb +178 -0
- data/lib/lutaml/store/database_store.rb +425 -0
- data/lib/lutaml/store/events.rb +92 -0
- data/lib/lutaml/store/format/base.rb +33 -0
- data/lib/lutaml/store/format/json.rb +25 -0
- data/lib/lutaml/store/format/jsonl.rb +37 -0
- data/lib/lutaml/store/format/marshal_format.rb +37 -0
- data/lib/lutaml/store/format/yaml.rb +29 -0
- data/lib/lutaml/store/format/yamls.rb +35 -0
- data/lib/lutaml/store/format.rb +33 -0
- data/lib/lutaml/store/http_cache.rb +279 -0
- data/lib/lutaml/store/http_cache_config.rb +53 -0
- data/lib/lutaml/store/http_cache_entry.rb +69 -0
- data/lib/lutaml/store/http_header_processor.rb +175 -0
- data/lib/lutaml/store/integrity.rb +102 -0
- data/lib/lutaml/store/model_registration.rb +75 -0
- data/lib/lutaml/store/model_registry.rb +123 -0
- data/lib/lutaml/store/model_serializer.rb +69 -0
- data/lib/lutaml/store/monitor.rb +192 -0
- data/lib/lutaml/store/storage_key.rb +40 -0
- data/lib/lutaml/store/version.rb +7 -0
- data/lib/lutaml/store.rb +41 -0
- data/lutaml-store.gemspec +35 -0
- data/plan.adoc +606 -0
- data/sig/lutaml/store.rbs +6 -0
- data/spec/lutaml/store/adapter_interface_spec.rb +89 -0
- data/spec/lutaml/store/anti_pattern_guard_spec.rb +35 -0
- data/spec/lutaml/store/anti_pattern_spec.rb +78 -0
- data/spec/lutaml/store/autoload_spec.rb +34 -0
- data/spec/lutaml/store/cache_store_spec.rb +271 -0
- data/spec/lutaml/store/compression_spec.rb +78 -0
- data/spec/lutaml/store/config_enhanced_spec.rb +158 -0
- data/spec/lutaml/store/corrected_http_cache_integration_spec.rb +336 -0
- data/spec/lutaml/store/custom_serializer_spec.rb +108 -0
- data/spec/lutaml/store/database_store_spec.rb +279 -0
- data/spec/lutaml/store/file_io_spec.rb +219 -0
- data/spec/lutaml/store/format_round_trip_spec.rb +110 -0
- data/spec/lutaml/store/format_spec.rb +70 -0
- data/spec/lutaml/store/http_cache_entry_spec.rb +203 -0
- data/spec/lutaml/store/http_cache_hal_integration_spec.rb +404 -0
- data/spec/lutaml/store/http_cache_spec.rb +422 -0
- data/spec/lutaml/store/http_header_processor_spec.rb +290 -0
- data/spec/lutaml/store/import_spec.rb +90 -0
- data/spec/lutaml/store/integrity_spec.rb +157 -0
- data/spec/lutaml/store/key_collision_serializer_spec.rb +98 -0
- data/spec/lutaml/store/load_save_spec.rb +107 -0
- data/spec/lutaml/store/lutaml_model_integration_spec.rb +291 -0
- data/spec/lutaml/store/model_serializer_spec.rb +140 -0
- data/spec/lutaml/store/store_spec.rb +182 -0
- data/spec/lutaml/store_spec.rb +21 -0
- data/spec/spec_helper.rb +16 -0
- metadata +166 -0
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
lutaml-store (0.1.1)
|
|
5
|
+
lutaml-model (~> 0.8.15)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
ast (2.4.3)
|
|
11
|
+
base64 (0.3.0)
|
|
12
|
+
bigdecimal (4.1.2)
|
|
13
|
+
canon (0.2.9)
|
|
14
|
+
diff-lcs
|
|
15
|
+
json
|
|
16
|
+
moxml
|
|
17
|
+
nokogiri
|
|
18
|
+
paint
|
|
19
|
+
rainbow
|
|
20
|
+
table_tennis
|
|
21
|
+
thor
|
|
22
|
+
unicode-name
|
|
23
|
+
concurrent-ruby (1.3.6)
|
|
24
|
+
csv (3.3.5)
|
|
25
|
+
date (3.5.1)
|
|
26
|
+
diff-lcs (1.6.2)
|
|
27
|
+
erb (6.0.4)
|
|
28
|
+
ffi (1.17.4)
|
|
29
|
+
ffi (1.17.4-arm64-darwin)
|
|
30
|
+
io-console (0.8.2)
|
|
31
|
+
irb (1.18.0)
|
|
32
|
+
pp (>= 0.6.0)
|
|
33
|
+
prism (>= 1.3.0)
|
|
34
|
+
rdoc (>= 4.0.0)
|
|
35
|
+
reline (>= 0.4.2)
|
|
36
|
+
json (2.19.5)
|
|
37
|
+
language_server-protocol (3.17.0.5)
|
|
38
|
+
lint_roller (1.1.0)
|
|
39
|
+
liquid (5.12.0)
|
|
40
|
+
bigdecimal
|
|
41
|
+
strscan (>= 3.1.1)
|
|
42
|
+
lutaml-model (0.8.15)
|
|
43
|
+
base64
|
|
44
|
+
bigdecimal
|
|
45
|
+
canon
|
|
46
|
+
concurrent-ruby
|
|
47
|
+
liquid (>= 4.0, < 6.0)
|
|
48
|
+
moxml (~> 0.1.23)
|
|
49
|
+
ostruct
|
|
50
|
+
rubyzip (~> 2.3)
|
|
51
|
+
thor
|
|
52
|
+
memo_wise (1.13.0)
|
|
53
|
+
mini_portile2 (2.8.9)
|
|
54
|
+
moxml (0.1.23)
|
|
55
|
+
nokogiri (1.19.3)
|
|
56
|
+
mini_portile2 (~> 2.8.2)
|
|
57
|
+
racc (~> 1.4)
|
|
58
|
+
nokogiri (1.19.3-arm64-darwin)
|
|
59
|
+
racc (~> 1.4)
|
|
60
|
+
ostruct (0.6.3)
|
|
61
|
+
paint (2.3.0)
|
|
62
|
+
parallel (2.1.0)
|
|
63
|
+
parser (3.3.11.1)
|
|
64
|
+
ast (~> 2.4.1)
|
|
65
|
+
racc
|
|
66
|
+
pp (0.6.3)
|
|
67
|
+
prettyprint
|
|
68
|
+
prettyprint (0.2.0)
|
|
69
|
+
prism (1.9.0)
|
|
70
|
+
psych (5.3.1)
|
|
71
|
+
date
|
|
72
|
+
stringio
|
|
73
|
+
racc (1.8.1)
|
|
74
|
+
rainbow (3.1.1)
|
|
75
|
+
rake (13.4.2)
|
|
76
|
+
rdoc (7.2.0)
|
|
77
|
+
erb
|
|
78
|
+
psych (>= 4.0.0)
|
|
79
|
+
tsort
|
|
80
|
+
regexp_parser (2.12.0)
|
|
81
|
+
reline (0.6.3)
|
|
82
|
+
io-console (~> 0.5)
|
|
83
|
+
rspec (3.13.2)
|
|
84
|
+
rspec-core (~> 3.13.0)
|
|
85
|
+
rspec-expectations (~> 3.13.0)
|
|
86
|
+
rspec-mocks (~> 3.13.0)
|
|
87
|
+
rspec-core (3.13.6)
|
|
88
|
+
rspec-support (~> 3.13.0)
|
|
89
|
+
rspec-expectations (3.13.5)
|
|
90
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
91
|
+
rspec-support (~> 3.13.0)
|
|
92
|
+
rspec-mocks (3.13.8)
|
|
93
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
94
|
+
rspec-support (~> 3.13.0)
|
|
95
|
+
rspec-support (3.13.7)
|
|
96
|
+
rubocop (1.86.2)
|
|
97
|
+
json (~> 2.3)
|
|
98
|
+
language_server-protocol (~> 3.17.0.2)
|
|
99
|
+
lint_roller (~> 1.1.0)
|
|
100
|
+
parallel (>= 1.10)
|
|
101
|
+
parser (>= 3.3.0.2)
|
|
102
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
103
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
104
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
105
|
+
ruby-progressbar (~> 1.7)
|
|
106
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
107
|
+
rubocop-ast (1.49.1)
|
|
108
|
+
parser (>= 3.3.7.2)
|
|
109
|
+
prism (~> 1.7)
|
|
110
|
+
rubocop-performance (1.26.1)
|
|
111
|
+
lint_roller (~> 1.1)
|
|
112
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
113
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
114
|
+
rubocop-rake (0.7.1)
|
|
115
|
+
lint_roller (~> 1.1)
|
|
116
|
+
rubocop (>= 1.72.1)
|
|
117
|
+
rubocop-rspec (3.9.0)
|
|
118
|
+
lint_roller (~> 1.1)
|
|
119
|
+
rubocop (~> 1.81)
|
|
120
|
+
ruby-progressbar (1.13.0)
|
|
121
|
+
rubyzip (2.4.1)
|
|
122
|
+
sqlite3 (1.7.3)
|
|
123
|
+
mini_portile2 (~> 2.8.0)
|
|
124
|
+
stringio (3.2.0)
|
|
125
|
+
strscan (3.1.8)
|
|
126
|
+
table_tennis (0.0.7)
|
|
127
|
+
csv (~> 3.3)
|
|
128
|
+
ffi (~> 1.17)
|
|
129
|
+
memo_wise (~> 1.11)
|
|
130
|
+
paint (~> 2.3)
|
|
131
|
+
unicode-display_width (~> 3.1)
|
|
132
|
+
thor (1.5.0)
|
|
133
|
+
tsort (0.2.0)
|
|
134
|
+
unicode-display_width (3.2.0)
|
|
135
|
+
unicode-emoji (~> 4.1)
|
|
136
|
+
unicode-emoji (4.2.0)
|
|
137
|
+
unicode-name (1.14.0)
|
|
138
|
+
unicode-types (~> 1.11)
|
|
139
|
+
unicode-types (1.11.0)
|
|
140
|
+
|
|
141
|
+
PLATFORMS
|
|
142
|
+
arm64-darwin-23
|
|
143
|
+
|
|
144
|
+
DEPENDENCIES
|
|
145
|
+
irb
|
|
146
|
+
lutaml-store!
|
|
147
|
+
paint
|
|
148
|
+
rake
|
|
149
|
+
rspec
|
|
150
|
+
rubocop
|
|
151
|
+
rubocop-performance
|
|
152
|
+
rubocop-rake
|
|
153
|
+
rubocop-rspec
|
|
154
|
+
sqlite3
|
|
155
|
+
|
|
156
|
+
CHECKSUMS
|
|
157
|
+
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
158
|
+
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
|
|
159
|
+
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
|
|
160
|
+
bundler (4.0.11) sha256=5bcec0fb78302e48d02ee46f10ee6e6942be647ba5b44a6d1ddfda9a240ce785
|
|
161
|
+
canon (0.2.9) sha256=2623e83062272d34cff08a7d091b9f4b27dc04d3df75266ac396e23fae7d92e3
|
|
162
|
+
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
|
|
163
|
+
csv (3.3.5) sha256=6e5134ac3383ef728b7f02725d9872934f523cb40b961479f69cf3afa6c8e73f
|
|
164
|
+
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
|
165
|
+
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
166
|
+
erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
|
|
167
|
+
ffi (1.17.4) sha256=bcd1642e06f0d16fc9e09ac6d49c3a7298b9789bcb58127302f934e437d60acf
|
|
168
|
+
ffi (1.17.4-arm64-darwin) sha256=19071aaf1419251b0a46852abf960e77330a3b334d13a4ab51d58b31a937001b
|
|
169
|
+
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
170
|
+
irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
|
|
171
|
+
json (2.19.5) sha256=218a18553e4801d579ca7e0f5bc72bafd776d7397238a1fb4e74db5b0a812c59
|
|
172
|
+
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
173
|
+
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
174
|
+
liquid (5.12.0) sha256=5a3c2c2430cd925d21c53e4ed9abea52cd0a9da53b541422f81dee79aca2a673
|
|
175
|
+
lutaml-model (0.8.15)
|
|
176
|
+
lutaml-store (0.1.1)
|
|
177
|
+
memo_wise (1.13.0) sha256=30220c38c4cef410849bc73553c58664dc2c91c6379e4a1df22aea02358b716b
|
|
178
|
+
mini_portile2 (2.8.9) sha256=0cd7c7f824e010c072e33f68bc02d85a00aeb6fce05bb4819c03dfd3c140c289
|
|
179
|
+
moxml (0.1.23)
|
|
180
|
+
nokogiri (1.19.3) sha256=78312cbac32a40c812780d9678221b79d51288eec00054c1a8d15f7ce05960e8
|
|
181
|
+
nokogiri (1.19.3-arm64-darwin) sha256=71b9bd424b1b7abc18b05052a1a3cfd3627abdca62be280854cc411791357e42
|
|
182
|
+
ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912
|
|
183
|
+
paint (2.3.0) sha256=327d623e4038619d5bd99ae5db07973859cd78400c7f0329eea283cef8e83be5
|
|
184
|
+
parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
|
|
185
|
+
parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
|
|
186
|
+
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
|
187
|
+
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
|
188
|
+
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
189
|
+
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
190
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
191
|
+
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
192
|
+
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
|
|
193
|
+
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
194
|
+
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
195
|
+
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
196
|
+
rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
|
|
197
|
+
rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
|
|
198
|
+
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
199
|
+
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
200
|
+
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
201
|
+
rubocop (1.86.2) sha256=bb2e97f635eda42c448f2588f4a6ff78f221b8bdfdf65b1e9b07fbd57521b45d
|
|
202
|
+
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
203
|
+
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
|
204
|
+
rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
|
|
205
|
+
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
206
|
+
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
207
|
+
rubyzip (2.4.1) sha256=8577c88edc1fde8935eb91064c5cb1aef9ad5494b940cf19c775ee833e075615
|
|
208
|
+
sqlite3 (1.7.3) sha256=fa77f63c709548f46d4e9b6bb45cda52aa3881aa12cc85991132758e8968701c
|
|
209
|
+
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
210
|
+
strscan (3.1.8) sha256=aae2db611a225559f21ffbb71765c9a4e60fd262534a9ea84f4f11c7f32f679e
|
|
211
|
+
table_tennis (0.0.7) sha256=b45b50dc7714e3bea5b31d2ad2b7d6bdc2995fc7a686976017c17424e1094a28
|
|
212
|
+
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
|
|
213
|
+
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
214
|
+
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
|
|
215
|
+
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
|
|
216
|
+
unicode-name (1.14.0) sha256=b350dcdeb503748c8ad05c472e8078570fbf3231a73be53431c15db10bbedbdd
|
|
217
|
+
unicode-types (1.11.0) sha256=81d1201273260fa89b85471e7eebb93a51bb4e5f078a525508dcae7835d176f9
|
|
218
|
+
|
|
219
|
+
BUNDLED WITH
|
|
220
|
+
4.0.11
|