/** * Ruby gem package detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Gem package detector. * * Scans `Gemfile` and `*.gemspec` files in the project directory and extracts * gem dependencies. Deduplicates gems that appear in both sources. * * @experimental This API is unstable and may change without notice. */ export declare const gemDetector: PackageDetector; /** * Gem package reader. * * Reads gemspec metadata from `/specifications/.gemspec` * and extracts `axm_`-prefixed metadata keys. * * @experimental This API is unstable and may change without notice. */ export declare const gemReader: PackageReader; //# sourceMappingURL=gem.d.ts.map