MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_ruby

Function extract_ruby

graphify/extract.py:6473–6475  ·  view source on GitHub ↗

Extract classes, methods, singleton methods, and calls from a .rb file.

(path: Path)

Source from the content-addressed store, hash-verified

6471
6472
6473def 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
6478def extract_csharp(path: Path) -> dict:

Calls 1

_extract_genericFunction · 0.85