UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.24 kB
/** * **chruby-exec** - Changes the current Ruby * * @domain `github.com/postmodern/chruby` * @programs `chruby-exec` * @version `0.3.9` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install chruby-exec` * @name `chruby-exec` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.chrubyexec * // Or access via domain * const samePkg = pantry.githubcompostmodernchruby * console.log(pkg === samePkg) // true * console.log(pkg.name) // "chruby-exec" * console.log(pkg.description) // "Changes the current Ruby" * console.log(pkg.programs) // ["chruby-exec"] * console.log(pkg.versions[0]) // "0.3.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/postmodern/chruby.md * @see https://ts-pkgx.netlify.app/usage */ export declare const chrubyexecPackage: { /** * The display name of this package. */ name: 'chruby-exec'; /** * The canonical domain name for this package. */ domain: 'github.com/postmodern/chruby'; /** * Brief description of what this package does. */ description: 'Changes the current Ruby'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/postmodern/chruby/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install chruby-exec'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['chruby-exec']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) chruby-exec -- $SHELL -i'; launchpadInstallCommand: 'launchpad install chruby-exec' }; export type ChrubyexecPackage = typeof chrubyexecPackage