rubydex 0.1.0.beta11 → 0.1.0.beta13

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 (108) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +23 -23
  3. data/README.md +125 -125
  4. data/THIRD_PARTY_LICENSES.html +2018 -945
  5. data/exe/rdx +47 -47
  6. data/ext/rubydex/declaration.c +453 -388
  7. data/ext/rubydex/declaration.h +23 -23
  8. data/ext/rubydex/definition.c +284 -197
  9. data/ext/rubydex/definition.h +28 -28
  10. data/ext/rubydex/diagnostic.c +6 -6
  11. data/ext/rubydex/diagnostic.h +11 -11
  12. data/ext/rubydex/document.c +97 -98
  13. data/ext/rubydex/document.h +10 -10
  14. data/ext/rubydex/extconf.rb +146 -127
  15. data/ext/rubydex/graph.c +701 -512
  16. data/ext/rubydex/graph.h +10 -10
  17. data/ext/rubydex/handle.h +44 -44
  18. data/ext/rubydex/location.c +22 -22
  19. data/ext/rubydex/location.h +15 -15
  20. data/ext/rubydex/reference.c +123 -104
  21. data/ext/rubydex/reference.h +15 -16
  22. data/ext/rubydex/rubydex.c +22 -22
  23. data/ext/rubydex/utils.c +108 -86
  24. data/ext/rubydex/utils.h +34 -28
  25. data/lib/rubydex/comment.rb +17 -17
  26. data/lib/rubydex/declaration.rb +11 -0
  27. data/lib/rubydex/diagnostic.rb +21 -21
  28. data/lib/rubydex/failures.rb +15 -15
  29. data/lib/rubydex/graph.rb +98 -92
  30. data/lib/rubydex/keyword.rb +17 -0
  31. data/lib/rubydex/keyword_parameter.rb +13 -0
  32. data/lib/rubydex/location.rb +90 -90
  33. data/lib/rubydex/mixin.rb +22 -0
  34. data/lib/rubydex/version.rb +5 -5
  35. data/lib/rubydex.rb +24 -20
  36. data/rbi/rubydex.rbi +425 -310
  37. data/rust/Cargo.lock +1851 -1851
  38. data/rust/Cargo.toml +29 -29
  39. data/rust/about.toml +10 -10
  40. data/rust/{about.hbs → about_templates/about.hbs} +81 -78
  41. data/rust/about_templates/mingw_licenses.hbs +1071 -0
  42. data/rust/rubydex/Cargo.toml +42 -42
  43. data/rust/rubydex/src/compile_assertions.rs +13 -13
  44. data/rust/rubydex/src/diagnostic.rs +110 -109
  45. data/rust/rubydex/src/errors.rs +28 -28
  46. data/rust/rubydex/src/indexing/local_graph.rs +224 -224
  47. data/rust/rubydex/src/indexing/rbs_indexer.rs +1551 -1554
  48. data/rust/rubydex/src/indexing/ruby_indexer.rs +2329 -6753
  49. data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +4962 -0
  50. data/rust/rubydex/src/indexing.rs +210 -210
  51. data/rust/rubydex/src/integrity.rs +279 -278
  52. data/rust/rubydex/src/job_queue.rs +199 -205
  53. data/rust/rubydex/src/lib.rs +17 -17
  54. data/rust/rubydex/src/listing.rs +371 -272
  55. data/rust/rubydex/src/main.rs +160 -160
  56. data/rust/rubydex/src/model/built_in.rs +83 -0
  57. data/rust/rubydex/src/model/comment.rs +24 -24
  58. data/rust/rubydex/src/model/declaration.rs +679 -588
  59. data/rust/rubydex/src/model/definitions.rs +1682 -1602
  60. data/rust/rubydex/src/model/document.rs +222 -252
  61. data/rust/rubydex/src/model/encoding.rs +22 -22
  62. data/rust/rubydex/src/model/graph.rs +3782 -3556
  63. data/rust/rubydex/src/model/id.rs +110 -110
  64. data/rust/rubydex/src/model/identity_maps.rs +58 -58
  65. data/rust/rubydex/src/model/ids.rs +60 -38
  66. data/rust/rubydex/src/model/keywords.rs +256 -256
  67. data/rust/rubydex/src/model/name.rs +298 -298
  68. data/rust/rubydex/src/model/references.rs +111 -111
  69. data/rust/rubydex/src/model/string_ref.rs +50 -50
  70. data/rust/rubydex/src/model/visibility.rs +41 -41
  71. data/rust/rubydex/src/model.rs +15 -14
  72. data/rust/rubydex/src/offset.rs +147 -147
  73. data/rust/rubydex/src/position.rs +6 -6
  74. data/rust/rubydex/src/query.rs +1841 -1700
  75. data/rust/rubydex/src/resolution.rs +1852 -5895
  76. data/rust/rubydex/src/resolution_tests.rs +4701 -0
  77. data/rust/rubydex/src/stats/memory.rs +71 -71
  78. data/rust/rubydex/src/stats/orphan_report.rs +264 -263
  79. data/rust/rubydex/src/stats/timer.rs +127 -127
  80. data/rust/rubydex/src/stats.rs +11 -11
  81. data/rust/rubydex/src/test_utils/context.rs +226 -226
  82. data/rust/rubydex/src/test_utils/graph_test.rs +730 -679
  83. data/rust/rubydex/src/test_utils/local_graph_test.rs +602 -602
  84. data/rust/rubydex/src/test_utils.rs +52 -52
  85. data/rust/rubydex/src/visualization/dot.rs +192 -176
  86. data/rust/rubydex/src/visualization.rs +6 -6
  87. data/rust/rubydex/tests/cli.rs +185 -167
  88. data/rust/rubydex-mcp/Cargo.toml +28 -28
  89. data/rust/rubydex-mcp/src/main.rs +48 -48
  90. data/rust/rubydex-mcp/src/server.rs +1145 -1145
  91. data/rust/rubydex-mcp/src/tools.rs +49 -49
  92. data/rust/rubydex-mcp/tests/mcp.rs +302 -302
  93. data/rust/rubydex-sys/Cargo.toml +20 -20
  94. data/rust/rubydex-sys/build.rs +14 -14
  95. data/rust/rubydex-sys/cbindgen.toml +12 -12
  96. data/rust/rubydex-sys/src/declaration_api.rs +485 -469
  97. data/rust/rubydex-sys/src/definition_api.rs +443 -352
  98. data/rust/rubydex-sys/src/diagnostic_api.rs +99 -99
  99. data/rust/rubydex-sys/src/document_api.rs +85 -54
  100. data/rust/rubydex-sys/src/graph_api.rs +1017 -700
  101. data/rust/rubydex-sys/src/lib.rs +79 -9
  102. data/rust/rubydex-sys/src/location_api.rs +79 -79
  103. data/rust/rubydex-sys/src/name_api.rs +187 -135
  104. data/rust/rubydex-sys/src/reference_api.rs +267 -195
  105. data/rust/rubydex-sys/src/utils.rs +70 -70
  106. data/rust/rustfmt.toml +2 -2
  107. metadata +16 -9
  108. data/lib/rubydex/librubydex_sys.so +0 -0
data/rust/Cargo.toml CHANGED
@@ -1,29 +1,29 @@
1
- [workspace]
2
- members = [
3
- "rubydex",
4
- "rubydex-mcp",
5
- "rubydex-sys",
6
- ]
7
-
8
- resolver = "3"
9
-
10
- [profile.release]
11
- lto = true
12
- opt-level = 3
13
- codegen-units = 1
14
-
15
- [profile.profiling]
16
- inherits = "release"
17
- debug = true
18
- strip = false
19
-
20
- [workspace.lints.clippy]
21
- # See: https://doc.rust-lang.org/clippy/lints.html
22
- correctness = "deny"
23
- suspicious = "deny"
24
- perf = "deny"
25
- complexity = "deny"
26
- style = "deny"
27
- pedantic = "warn"
28
-
29
- ptr-as-ptr = { level = "deny", priority = 1 }
1
+ [workspace]
2
+ members = [
3
+ "rubydex",
4
+ "rubydex-mcp",
5
+ "rubydex-sys",
6
+ ]
7
+
8
+ resolver = "3"
9
+
10
+ [profile.release]
11
+ lto = true
12
+ opt-level = 3
13
+ codegen-units = 1
14
+
15
+ [profile.profiling]
16
+ inherits = "release"
17
+ debug = true
18
+ strip = false
19
+
20
+ [workspace.lints.clippy]
21
+ # See: https://doc.rust-lang.org/clippy/lints.html
22
+ correctness = "deny"
23
+ suspicious = "deny"
24
+ perf = "deny"
25
+ complexity = "deny"
26
+ style = "deny"
27
+ pedantic = "warn"
28
+
29
+ ptr-as-ptr = { level = "deny", priority = 1 }
data/rust/about.toml CHANGED
@@ -1,10 +1,10 @@
1
- accepted = [
2
- "Apache-2.0",
3
- "MIT",
4
- "BSD-3-Clause",
5
- "BSD-2-Clause",
6
- "Unicode-3.0",
7
- "ISC",
8
- "BSL-1.0",
9
- "MPL-2.0"
10
- ]
1
+ accepted = [
2
+ "Apache-2.0",
3
+ "MIT",
4
+ "BSD-3-Clause",
5
+ "BSD-2-Clause",
6
+ "Unicode-3.0",
7
+ "ISC",
8
+ "BSL-1.0",
9
+ "MPL-2.0"
10
+ ]
@@ -1,78 +1,81 @@
1
- <html>
2
-
3
- <head>
4
- <style>
5
- @media (prefers-color-scheme: dark) {
6
- body {
7
- background: #333;
8
- color: white;
9
- }
10
-
11
- a {
12
- color: skyblue;
13
- }
14
- }
15
-
16
- .container {
17
- font-family: sans-serif;
18
- max-width: 800px;
19
- margin: 0 auto;
20
- }
21
-
22
- .intro {
23
- text-align: center;
24
- }
25
-
26
- .licenses-list {
27
- list-style-type: none;
28
- margin: 0;
29
- padding: 0;
30
- }
31
-
32
- .license-used-by {
33
- margin-top: -10px;
34
- }
35
-
36
- .license-text {
37
- max-height: 200px;
38
- overflow-y: scroll;
39
- white-space: pre-wrap;
40
- }
41
- </style>
42
- </head>
43
-
44
- <body>
45
- <main class="container">
46
- <div class="intro">
47
- <h1>Third Party Licenses</h1>
48
- <p>This page lists the licenses of the projects used in Rubydex.</p>
49
- </div>
50
-
51
- <h2>Overview of licenses:</h2>
52
- <ul class="licenses-overview">
53
- {{#each overview}}
54
- <li><a href="#{{id}}">{{name}}</a> ({{count}})</li>
55
- {{/each}}
56
- </ul>
57
-
58
- <h2>All license text:</h2>
59
- <ul class="licenses-list">
60
- {{#each licenses}}
61
- <li class="license">
62
- <h3 id="{{id}}">{{name}}</h3>
63
- <h4>Used by:</h4>
64
- <ul class="license-used-by">
65
- {{#each used_by}}
66
- <li><a
67
- href="{{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}}">{{crate.name}}
68
- {{crate.version}}</a></li>
69
- {{/each}}
70
- </ul>
71
- <pre class="license-text">{{text}}</pre>
72
- </li>
73
- {{/each}}
74
- </ul>
75
- </main>
76
- </body>
77
-
78
- </html>
1
+ <html>
2
+
3
+ <head>
4
+ <style>
5
+ @media (prefers-color-scheme: dark) {
6
+ body {
7
+ background: #333;
8
+ color: white;
9
+ }
10
+
11
+ a {
12
+ color: skyblue;
13
+ }
14
+ }
15
+
16
+ .container {
17
+ font-family: sans-serif;
18
+ max-width: 800px;
19
+ margin: 0 auto;
20
+ }
21
+
22
+ .intro {
23
+ text-align: center;
24
+ }
25
+
26
+ .licenses-list {
27
+ list-style-type: none;
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+
32
+ .license-used-by {
33
+ margin-top: -10px;
34
+ }
35
+
36
+ .license-text {
37
+ max-height: 200px;
38
+ overflow-y: scroll;
39
+ white-space: pre-wrap;
40
+ }
41
+ </style>
42
+ </head>
43
+
44
+ <body>
45
+ <main class="container">
46
+ <div class="intro">
47
+ <h1>Third Party Licenses</h1>
48
+ <p>This page lists the licenses of the projects used in Rubydex.</p>
49
+ </div>
50
+
51
+ <h2>Overview of licenses:</h2>
52
+ <ul class="licenses-overview">
53
+ {{#each overview}}
54
+ <li><a href="#{{id}}">{{name}}</a> ({{count}})</li>
55
+ {{/each}}
56
+ <li><a href="#mingw-w64-toolchain">MinGW-w64 toolchain and related libraries for Windows precompiled
57
+ builds</a></li>
58
+ </ul>
59
+
60
+ <h2>All license text:</h2>
61
+ <ul class="licenses-list">
62
+ {{#each licenses}}
63
+ <li class="license">
64
+ <h3 id="{{id}}">{{name}}</h3>
65
+ <h4>Used by:</h4>
66
+ <ul class="license-used-by">
67
+ {{#each used_by}}
68
+ <li><a
69
+ href="{{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}}">{{crate.name}}
70
+ {{crate.version}}</a></li>
71
+ {{/each}}
72
+ </ul>
73
+ <pre class="license-text">{{text}}</pre>
74
+ </li>
75
+ {{/each}}
76
+ {{> mingw_licenses}}
77
+ </ul>
78
+ </main>
79
+ </body>
80
+
81
+ </html>