/** * **rbenv** - Manage your app's Ruby environment * * @domain `github.com/rbenv/rbenv` * @programs `rbenv` * @version `1.3.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/rbenv/rbenv` * @homepage https://rbenv.org * @dependencies `ruby-lang.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomrbenvrbenv * console.log(pkg.name) // "rbenv" * console.log(pkg.description) // "Manage your app's Ruby environment" * console.log(pkg.programs) // ["rbenv"] * console.log(pkg.versions[0]) // "1.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/rbenv/rbenv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rbenvPackage: { /** * The display name of this package. */ name: 'rbenv'; /** * The canonical domain name for this package. */ domain: 'github.com/rbenv/rbenv'; /** * Brief description of what this package does. */ description: 'Manage your app\'s Ruby environment'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/rbenv/rbenv/package.yml'; homepageUrl: 'https://rbenv.org'; githubUrl: 'https://github.com/rbenv/rbenv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/rbenv/rbenv'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/rbenv/rbenv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/rbenv/rbenv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rbenv']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['ruby-lang.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.2', '1.3.1', '1.3.0', '1.2.0']; aliases: readonly [] }; export type RbenvPackage = typeof rbenvPackage