fluent-plugin-openlineage 0.1.2 → 0.1.3

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.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +6 -0
  3. data/.github/workflows/linux.yml +30 -0
  4. data/.gitignore +16 -0
  5. data/.idea/.gitignore +8 -0
  6. data/.idea/fluentd.iml +204 -0
  7. data/.idea/misc.xml +4 -0
  8. data/.idea/modules/benchmark-memory-0.2.iml +12 -0
  9. data/.idea/modules/bigdecimal-3.1.iml +11 -0
  10. data/.idea/modules/certstore_c-0.1.iml +15 -0
  11. data/.idea/modules/concurrent-ruby-1.3.iml +18 -0
  12. data/.idea/modules/concurrent-ruby-1.31.iml +15 -0
  13. data/.idea/modules/connection_pool-2.4.iml +11 -0
  14. data/.idea/modules/cool.io-1.8.iml +16 -0
  15. data/.idea/modules/drb-2.2.iml +14 -0
  16. data/.idea/modules/drb-2.21.iml +11 -0
  17. data/.idea/modules/ffi-1.17.iml +20 -0
  18. data/.idea/modules/ffi-win32-extensions-1.0.iml +19 -0
  19. data/.idea/modules/fluentd-1.17.iml +43 -0
  20. data/.idea/modules/http_parser.rb-0.8.iml +17 -0
  21. data/.idea/modules/json-2.7.iml +14 -0
  22. data/.idea/modules/json-2.71.iml +11 -0
  23. data/.idea/modules/msgpack-1.7.iml +15 -0
  24. data/.idea/modules/mutex_m-0.2.iml +15 -0
  25. data/.idea/modules/new_gem.iml +15 -0
  26. data/.idea/modules/power_assert-2.0.iml +19 -0
  27. data/.idea/modules/rake-13.2.iml +18 -0
  28. data/.idea/modules/rake-13.21.iml +15 -0
  29. data/.idea/modules/rake-compiler-1.2.iml +13 -0
  30. data/.idea/modules/rusty_json_schema-0.15.iml +15 -0
  31. data/.idea/modules/serverengine-2.3.iml +17 -0
  32. data/.idea/modules/sigdump-0.2.iml +16 -0
  33. data/.idea/modules/specifications.iml +14 -0
  34. data/.idea/modules/specifications1.iml +11 -0
  35. data/.idea/modules/strptime-0.2.iml +16 -0
  36. data/.idea/modules/thermite-0.13.iml +17 -0
  37. data/.idea/modules/webrick-1.8.iml +18 -0
  38. data/.idea/modules/win32-event-0.6.iml +21 -0
  39. data/.idea/modules/win32-ipc-0.7.iml +20 -0
  40. data/.idea/modules/yajl-ruby-1.4.iml +779 -0
  41. data/.idea/modules.xml +41 -0
  42. data/.rspec +2 -0
  43. data/ChangeLog +3 -0
  44. data/Gemfile +3 -0
  45. data/LICENSE +202 -0
  46. data/README.md +250 -0
  47. data/Rakefile +13 -0
  48. data/fluent-plugin-openlineage.gemspec +28 -0
  49. data/lib/fluent/plugin/parser_openlineage.rb +182 -0
  50. data/misc/fluent.conf +101 -0
  51. data/misc/test-complete.json +73 -0
  52. data/misc/test-start.json +73 -0
  53. data/spec/Naming.md +500 -0
  54. data/spec/OpenLineage.json +304 -0
  55. data/spec/Versioning.md +49 -0
  56. data/spec/events/event_full.json +206 -0
  57. data/spec/events/event_invalid_dataset_facet.json +31 -0
  58. data/spec/events/event_invalid_input_dataset_facet.json +29 -0
  59. data/spec/events/event_invalid_job_facet.json +26 -0
  60. data/spec/events/event_invalid_output_dataset_facet.json +29 -0
  61. data/spec/events/event_invalid_run_facet.json +28 -0
  62. data/spec/events/event_no_run_id.json +28 -0
  63. data/spec/events/event_simple.json +29 -0
  64. data/spec/facets/ColumnLineageDatasetFacet.json +96 -0
  65. data/spec/facets/ColumnLineageDatasetFacet.md +106 -0
  66. data/spec/facets/DataQualityAssertionsDatasetFacet.json +49 -0
  67. data/spec/facets/DataQualityMetricsInputDatasetFacet.json +76 -0
  68. data/spec/facets/DatasetVersionDatasetFacet.json +31 -0
  69. data/spec/facets/DatasourceDatasetFacet.json +32 -0
  70. data/spec/facets/DocumentationDatasetFacet.json +31 -0
  71. data/spec/facets/DocumentationJobFacet.json +30 -0
  72. data/spec/facets/ErrorMessageRunFacet.json +41 -0
  73. data/spec/facets/ExternalQueryRunFacet.json +36 -0
  74. data/spec/facets/ExternalQueryRunFacet.md +49 -0
  75. data/spec/facets/ExtractionErrorRunFacet.json +58 -0
  76. data/spec/facets/JobTypeJobFacet.json +41 -0
  77. data/spec/facets/LifecycleStateChangeDatasetFacet.json +46 -0
  78. data/spec/facets/NominalTimeRunFacet.json +38 -0
  79. data/spec/facets/OutputStatisticsOutputDatasetFacet.json +36 -0
  80. data/spec/facets/OwnershipDatasetFacet.json +45 -0
  81. data/spec/facets/OwnershipJobFacet.json +45 -0
  82. data/spec/facets/ParentRunFacet.json +54 -0
  83. data/spec/facets/ProcessingEngineRunFacet.json +41 -0
  84. data/spec/facets/SQLJobFacet.json +30 -0
  85. data/spec/facets/SchemaDatasetFacet.json +59 -0
  86. data/spec/facets/SourceCodeJobFacet.json +34 -0
  87. data/spec/facets/SourceCodeLocationJobFacet.json +60 -0
  88. data/spec/facets/StorageDatasetFacet.json +35 -0
  89. data/spec/facets/SymlinksDatasetFacet.json +47 -0
  90. data/spec/fluent/plugin/test_parser_openlineage.rb +141 -0
  91. data/spec/registry/core/registry.json +31 -0
  92. data/spec/registry/gcp/facets/GcpCommonJobFacet.json +43 -0
  93. data/spec/registry/gcp/registry.json +6 -0
  94. data/spec/spec_helper.rb +8 -0
  95. data/spec/tests/ColumnLineageDatasetFacet/1.json +172 -0
  96. data/spec/tests/DataQualityAssertionsDatasetFacet/1.json +58 -0
  97. data/spec/tests/DataQualityMetricsInputDatasetFacet/1.json +23 -0
  98. data/spec/tests/DatasetVersionDatasetFacet/1.json +7 -0
  99. data/spec/tests/DatasourceDatasetFacet/1.json +7 -0
  100. data/spec/tests/DocumentationDatasetFacet/1.json +7 -0
  101. data/spec/tests/DocumentationJobFacet/1.json +7 -0
  102. data/spec/tests/ErrorMessageRunFacet/1.json +9 -0
  103. data/spec/tests/ExternalQueryRunFacet/1.json +8 -0
  104. data/spec/tests/ExtractionErrorRunFacet/1.json +15 -0
  105. data/spec/tests/JobTypeJobFacet/1.json +9 -0
  106. data/spec/tests/LifecycleStateChangeDatasetFacet/1.json +11 -0
  107. data/spec/tests/NominalTimeRunFacet/1.json +8 -0
  108. data/spec/tests/OutputStatisticsOutputDatasetFacet/1.json +9 -0
  109. data/spec/tests/OwnershipDatasetFacet/1.json +11 -0
  110. data/spec/tests/OwnershipJobFacet/1.json +11 -0
  111. data/spec/tests/ParentRunFacet/1.json +13 -0
  112. data/spec/tests/ProcessingEngineRunFacet/1.json +9 -0
  113. data/spec/tests/SQLJobFacet/1.json +7 -0
  114. data/spec/tests/SchemaDatasetFacet/1.json +92 -0
  115. data/spec/tests/SourceCodeJobFacet/1.json +8 -0
  116. data/spec/tests/SourceCodeLocationJobFacet/1.json +8 -0
  117. data/spec/tests/StorageDatasetFacet/1.json +8 -0
  118. data/spec/tests/SymlinksDatasetFacet/1.json +13 -0
  119. data/spec/tests/example_full_event.json +24 -0
  120. metadata +188 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ab3f67b3e95efa652ca0e7b490c08b40639a9ee286d7875971fde4e65b3d860
4
- data.tar.gz: 887753fd06c2b8f4a21aa99a569add11ba570e182bad4e45a6f3a39f47a23a68
3
+ metadata.gz: 5fdbb9e6c771a776670fa767bc3125b52f2d3606b2ef1bc632254419999b2eeb
4
+ data.tar.gz: 0ca7fd258542000dc19477e15eaa283e1666f08b897dc17a09d14579a9652410
5
5
  SHA512:
6
- metadata.gz: 6047b1e80f1479c2f10ec56cef60719f8ad57197143e960bd39648eea589d2115bcecd019d7ed03b829641d46cad6fe9a27fd456c4c451e032f14223ac9e7160
7
- data.tar.gz: 01de69fd61d583f07731a0a00563a6ab388e13b1a15f79ffbecec84ce153ba35658fbb6dc060d9442dc18be83c13b053081bd03bf423cec3d94f9163e489ccd3
6
+ metadata.gz: a8156a1f544bdad9147199344e6ce70ab87dbc15d8c82f82ed5bf52e81ec041aafbdaedb5043793f929c0e89c360a69cb889a446e535d01c360b5ecdd1db1265
7
+ data.tar.gz: 1745c06449343f64e8830161f23115cfd5a42fa9a9494760f05163c26b471e59528243938dcce1f85c5cd198af5570e811cce171111229ebe7d66c21a0e13cf6
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: 'github-actions'
4
+ directory: '/'
5
+ schedule:
6
+ interval: 'weekly'
@@ -0,0 +1,30 @@
1
+ name: linux
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+ branches: [main]
7
+ jobs:
8
+ build:
9
+ runs-on: ${{ matrix.os }}
10
+ continue-on-error: ${{ matrix.experimental }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby: [ '3.2', '3.1', '3.0' ]
15
+ os:
16
+ - ubuntu-latest
17
+ experimental: [false]
18
+ name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby }}
24
+ - name: unit testing
25
+ env:
26
+ CI: true
27
+ run: |
28
+ gem install bundler rake
29
+ bundle install --jobs 4 --retry 3
30
+ bundle exec rake spec
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /Gemfile.fluentd.0.10.lock
5
+ /Gemfile.fluentd.0.12.lock
6
+ /_yardoc/
7
+ /coverage/
8
+ /doc/
9
+ /pkg/
10
+ /spec/reports/
11
+ /tmp/
12
+ *.bundle
13
+ *.so
14
+ *.o
15
+ *.a
16
+ mkmf.log
data/.idea/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
data/.idea/fluentd.iml ADDED
@@ -0,0 +1,204 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$">
8
+ <sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
9
+ <sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
10
+ <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
11
+ </content>
12
+ <orderEntry type="inheritedJdk" />
13
+ <orderEntry type="sourceFolder" forTests="false" />
14
+ <orderEntry type="module" module-name="fluentd-1.17" />
15
+ <orderEntry type="module" module-name="rake-13.2" />
16
+ <orderEntry type="module" module-name="rusty_json_schema-0.15" />
17
+ <orderEntry type="module-library">
18
+ <library name="test-unit (v3.6.2) [path][gem]" type="rubylib">
19
+ <properties>
20
+ <option name="additionalInfo">
21
+ <AdditionalInfo>
22
+ <option name="authors" value="N/A" />
23
+ <option name="email" value="N/A" />
24
+ <option name="homepage" value="N/A" />
25
+ <option name="summary" value="N/A" />
26
+ </AdditionalInfo>
27
+ </option>
28
+ <option name="fromPath" value="true" />
29
+ <option name="name" value="test-unit" />
30
+ <option name="requirePaths">
31
+ <list>
32
+ <option value="lib" />
33
+ </list>
34
+ </option>
35
+ <option name="url" value="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2" />
36
+ <option name="version" value="3.6.2" />
37
+ </properties>
38
+ <CLASSES>
39
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc" />
40
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib" />
41
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample" />
42
+ </CLASSES>
43
+ <JAVADOC />
44
+ <SOURCES>
45
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc" />
46
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib" />
47
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample" />
48
+ </SOURCES>
49
+ <excluded>
50
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc" />
51
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample" />
52
+ </excluded>
53
+ </library>
54
+ </orderEntry>
55
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
56
+ <orderEntry type="library" scope="PROVIDED" name="certstore_c (v0.1.7, ruby-3.3.3-p89) [gem]" level="application" />
57
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.3.3, ruby-3.3.3-p89) [gem]" level="application" />
58
+ <orderEntry type="library" scope="PROVIDED" name="cool.io (v1.8.1, ruby-3.3.3-p89) [gem]" level="application" />
59
+ <orderEntry type="library" scope="PROVIDED" name="csv (v3.2.8, ruby-3.3.3-p89) [gem]" level="application" />
60
+ <orderEntry type="library" scope="PROVIDED" name="drb (v2.2.0, ruby-3.3.3-p89) [gem]" level="application" />
61
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.17.0, ruby-3.3.3-p89) [gem]" level="application" />
62
+ <orderEntry type="library" scope="PROVIDED" name="ffi-win32-extensions (v1.0.4, ruby-3.3.3-p89) [gem]" level="application" />
63
+ <orderEntry type="module-library">
64
+ <library name="fluentd (v1.17.0) [path][gem]" type="rubylib">
65
+ <properties>
66
+ <option name="additionalInfo">
67
+ <AdditionalInfo>
68
+ <option name="authors" value="N/A" />
69
+ <option name="email" value="N/A" />
70
+ <option name="homepage" value="N/A" />
71
+ <option name="summary" value="N/A" />
72
+ </AdditionalInfo>
73
+ </option>
74
+ <option name="fromPath" value="true" />
75
+ <option name="name" value="fluentd" />
76
+ <option name="requirePaths">
77
+ <list>
78
+ <option value="lib" />
79
+ </list>
80
+ </option>
81
+ <option name="url" value="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt" />
82
+ <option name="version" value="1.17.0" />
83
+ </properties>
84
+ <CLASSES>
85
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin" />
86
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib" />
87
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/docs" />
88
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test" />
89
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github" />
90
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example" />
91
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates" />
92
+ </CLASSES>
93
+ <JAVADOC />
94
+ <SOURCES>
95
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin" />
96
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib" />
97
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/docs" />
98
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test" />
99
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github" />
100
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example" />
101
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates" />
102
+ </SOURCES>
103
+ <excluded>
104
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin" />
105
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/docs" />
106
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test" />
107
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github" />
108
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example" />
109
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates" />
110
+ </excluded>
111
+ </library>
112
+ </orderEntry>
113
+ <orderEntry type="library" scope="PROVIDED" name="http_parser.rb (v0.8.0, ruby-3.3.3-p89) [gem]" level="application" />
114
+ <orderEntry type="library" scope="PROVIDED" name="msgpack (v1.7.2, ruby-3.3.3-p89) [gem]" level="application" />
115
+ <orderEntry type="library" scope="PROVIDED" name="power_assert (v2.0.3, ruby-3.3.3-p89) [gem]" level="application" />
116
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
117
+ <orderEntry type="module-library">
118
+ <library name="rake (v13.2.1) [path][gem]" type="rubylib">
119
+ <properties>
120
+ <option name="additionalInfo">
121
+ <AdditionalInfo>
122
+ <option name="authors" value="N/A" />
123
+ <option name="email" value="N/A" />
124
+ <option name="homepage" value="N/A" />
125
+ <option name="summary" value="N/A" />
126
+ </AdditionalInfo>
127
+ </option>
128
+ <option name="fromPath" value="true" />
129
+ <option name="name" value="rake" />
130
+ <option name="requirePaths">
131
+ <list>
132
+ <option value="lib" />
133
+ </list>
134
+ </option>
135
+ <option name="url" value="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1" />
136
+ <option name="version" value="13.2.1" />
137
+ </properties>
138
+ <CLASSES>
139
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc" />
140
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/exe" />
141
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib" />
142
+ </CLASSES>
143
+ <JAVADOC />
144
+ <SOURCES>
145
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc" />
146
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/exe" />
147
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib" />
148
+ </SOURCES>
149
+ <excluded>
150
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc" />
151
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/exe" />
152
+ </excluded>
153
+ </library>
154
+ </orderEntry>
155
+ <orderEntry type="module-library">
156
+ <library name="rusty_json_schema (v[path]) [path][gem]" type="rubylib">
157
+ <properties>
158
+ <option name="additionalInfo">
159
+ <AdditionalInfo>
160
+ <option name="authors" value="N/A" />
161
+ <option name="email" value="N/A" />
162
+ <option name="homepage" value="N/A" />
163
+ <option name="summary" value="N/A" />
164
+ </AdditionalInfo>
165
+ </option>
166
+ <option name="fromPath" value="true" />
167
+ <option name="name" value="rusty_json_schema" />
168
+ <option name="requirePaths">
169
+ <list>
170
+ <option value="lib" />
171
+ </list>
172
+ </option>
173
+ <option name="url" value="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0" />
174
+ </properties>
175
+ <CLASSES>
176
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext" />
177
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib" />
178
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/src" />
179
+ </CLASSES>
180
+ <JAVADOC />
181
+ <SOURCES>
182
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext" />
183
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib" />
184
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/src" />
185
+ </SOURCES>
186
+ <excluded>
187
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext" />
188
+ <root url="file://$MODULE_DIR$/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/src" />
189
+ </excluded>
190
+ </library>
191
+ </orderEntry>
192
+ <orderEntry type="library" scope="PROVIDED" name="serverengine (v2.3.2, ruby-3.3.3-p89) [gem]" level="application" />
193
+ <orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
194
+ <orderEntry type="library" scope="PROVIDED" name="strptime (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
195
+ <orderEntry type="library" scope="PROVIDED" name="test-unit (v3.6.1, ruby-3.3.3-p89) [gem]" level="application" />
196
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.6, ruby-3.3.3-p89) [gem]" level="application" />
197
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo-data (v1.2024.1, ruby-3.3.3-p89) [gem]" level="application" />
198
+ <orderEntry type="library" scope="PROVIDED" name="webrick (v1.8.1, ruby-3.3.3-p89) [gem]" level="application" />
199
+ <orderEntry type="library" scope="PROVIDED" name="win32-event (v0.6.3, ruby-3.3.3-p89) [gem]" level="application" />
200
+ <orderEntry type="library" scope="PROVIDED" name="win32-ipc (v0.7.0, ruby-3.3.3-p89) [gem]" level="application" />
201
+ <orderEntry type="library" scope="PROVIDED" name="win32-service (v2.3.2, ruby-3.3.3-p89) [gem]" level="application" />
202
+ <orderEntry type="library" scope="PROVIDED" name="yajl-ruby (v1.4.3, ruby-3.3.3-p89) [gem]" level="application" />
203
+ </component>
204
+ </module>
data/.idea/misc.xml ADDED
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="ruby-3.3.3-p89" project-jdk-type="RUBY_SDK" />
4
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/benchmark-memory-0.2.0" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
8
+ </component>
9
+ <component name="RubyModuleProperties">
10
+ <option name="autoCreated" value="true" />
11
+ </component>
12
+ </module>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/bigdecimal-3.1.8" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ <component name="RubyModuleProperties">
9
+ <option name="autoCreated" value="true" />
10
+ </component>
11
+ </module>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
11
+ </component>
12
+ <component name="RubyModuleProperties">
13
+ <option name="autoCreated" value="true" />
14
+ </component>
15
+ </module>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.3.3, ruby-3.3.3-p89) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
14
+ </component>
15
+ <component name="RubyModuleProperties">
16
+ <option name="autoCreated" value="true" />
17
+ </component>
18
+ </module>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
8
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.3.3, ruby-3.3.3-p89) [gem]" level="application" />
9
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
10
+ <orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
11
+ </component>
12
+ <component name="RubyModuleProperties">
13
+ <option name="autoCreated" value="true" />
14
+ </component>
15
+ </module>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/connection_pool-2.4.1" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ <component name="RubyModuleProperties">
9
+ <option name="autoCreated" value="true" />
10
+ </component>
11
+ </module>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="rdoc (v6.6.3.1, ruby-3.3.3-p89) [gem]" level="application" />
12
+ </component>
13
+ <component name="RubyModuleProperties">
14
+ <option name="autoCreated" value="true" />
15
+ </component>
16
+ </module>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/drb-2.2.1" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ </component>
11
+ <component name="RubyModuleProperties">
12
+ <option name="autoCreated" value="true" />
13
+ </component>
14
+ </module>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ <component name="RubyModuleProperties">
9
+ <option name="autoCreated" value="true" />
10
+ </component>
11
+ </module>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bigdecimal (v3.1.5, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="kramdown (v2.4.0, ruby-3.3.3-p89) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="rbs (v3.4.0, ruby-3.3.3-p89) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.8, ruby-3.3.3-p89) [gem]" level="application" />
16
+ </component>
17
+ <component name="RubyModuleProperties">
18
+ <option name="autoCreated" value="true" />
19
+ </component>
20
+ </module>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.17.0, ruby-3.3.3-p89) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="power_assert (v2.0.3, ruby-3.3.3-p89) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="test-unit (v3.6.1, ruby-3.3.3-p89) [gem]" level="application" />
15
+ </component>
16
+ <component name="RubyModuleProperties">
17
+ <option name="autoCreated" value="true" />
18
+ </component>
19
+ </module>
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="aws-eventstream (v1.3.0, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="aws-partitions (v1.957.0, ruby-3.3.3-p89) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="aws-sdk-core (v3.201.3, ruby-3.3.3-p89) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="aws-sigv4 (v1.9.0, ruby-3.3.3-p89) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="certstore_c (v0.1.7, ruby-3.3.3-p89) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.3.3, ruby-3.3.3-p89) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="cool.io (v1.8.1, ruby-3.3.3-p89) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="csv (v3.2.8, ruby-3.3.3-p89) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="drb (v2.2.0, ruby-3.3.3-p89) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.17.0, ruby-3.3.3-p89) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="ffi-win32-extensions (v1.0.4, ruby-3.3.3-p89) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="http_parser.rb (v0.8.0, ruby-3.3.3-p89) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="jmespath (v1.6.2, ruby-3.3.3-p89) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="msgpack (v1.7.2, ruby-3.3.3-p89) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="power_assert (v2.0.3, ruby-3.3.3-p89) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.8, ruby-3.3.3-p89) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="serverengine (v2.3.2, ruby-3.3.3-p89) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="strptime (v0.2.5, ruby-3.3.3-p89) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="test-unit (v3.6.1, ruby-3.3.3-p89) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.6, ruby-3.3.3-p89) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo-data (v1.2024.1, ruby-3.3.3-p89) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="webrick (v1.8.1, ruby-3.3.3-p89) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="win32-event (v0.6.3, ruby-3.3.3-p89) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="win32-ipc (v0.7.0, ruby-3.3.3-p89) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="win32-service (v2.3.2, ruby-3.3.3-p89) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="yajl-ruby (v1.4.3, ruby-3.3.3-p89) [gem]" level="application" />
39
+ </component>
40
+ <component name="RubyModuleProperties">
41
+ <option name="autoCreated" value="true" />
42
+ </component>
43
+ </module>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.17.0, ruby-3.3.3-p89) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="json (v2.7.1, ruby-3.3.3-p89) [gem]" level="application" />
13
+ </component>
14
+ <component name="RubyModuleProperties">
15
+ <option name="autoCreated" value="true" />
16
+ </component>
17
+ </module>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/json-2.7.2" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ </component>
11
+ <component name="RubyModuleProperties">
12
+ <option name="autoCreated" value="true" />
13
+ </component>
14
+ </module>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/json-2.7.2" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ <component name="RubyModuleProperties">
9
+ <option name="autoCreated" value="true" />
10
+ </component>
11
+ </module>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2" />
8
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="msgpack (v1.7.2, ruby-3.3.3-p89) [gem]" level="application" />
11
+ </component>
12
+ <component name="RubyModuleProperties">
13
+ <option name="autoCreated" value="true" />
14
+ </component>
15
+ </module>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$/../../vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/vendor/bundle/ruby/3.3.0/gems/mutex_m-0.2.0" />
5
+ <orderEntry type="jdk" jdkName="ruby-3.3.3-p89" jdkType="RUBY_SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.16, ruby-3.3.3-p89) [gem]" level="application" />
8
+ <orderEntry type="library" scope="PROVIDED" name="power_assert (v2.0.3, ruby-3.3.3-p89) [gem]" level="application" />
9
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.3.3-p89) [gem]" level="application" />
10
+ <orderEntry type="library" scope="PROVIDED" name="test-unit (v3.6.1, ruby-3.3.3-p89) [gem]" level="application" />
11
+ </component>
12
+ <component name="RubyModuleProperties">
13
+ <option name="autoCreated" value="true" />
14
+ </component>
15
+ </module>