Extract classes, methods, singleton methods, and calls from a .rb file.
(path: Path)
| 6471 | |
| 6472 | |
| 6473 | def extract_ruby(path: Path) -> dict: |
| 6474 | """Extract classes, methods, singleton methods, and calls from a .rb file.""" |
| 6475 | return _extract_generic(path, _RUBY_CONFIG) |
| 6476 | |
| 6477 | |
| 6478 | def extract_csharp(path: Path) -> dict: |