UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.56 kB
/** * **ruby-install** - Install Ruby, JRuby, Rubinius, TruffleRuby, or mruby * * @domain `github.com/postmodern/ruby-install` * @programs `ruby-install` * @version `0.10.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install ruby-install` * @name `ruby-install` * @dependencies `tukaani.org/xz` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rubyinstall * // Or access via domain * const samePkg = pantry.githubcompostmodernrubyinstall * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ruby-install" * console.log(pkg.description) // "Install Ruby, JRuby, Rubinius, TruffleRuby, or ..." * console.log(pkg.programs) // ["ruby-install"] * console.log(pkg.versions[0]) // "0.10.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/postmodern/ruby-install.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rubyinstallPackage: { /** * The display name of this package. */ name: 'ruby-install'; /** * The canonical domain name for this package. */ domain: 'github.com/postmodern/ruby-install'; /** * Brief description of what this package does. */ description: 'Install Ruby, JRuby, Rubinius, TruffleRuby, or mruby'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/postmodern/ruby-install/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ruby-install'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ruby-install']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['tukaani.org/xz']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.10.1', '0.10.0', '0.9.4', '0.9.3', '0.9.2', '0.9.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) ruby-install -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ruby-install' }; export type RubyinstallPackage = typeof rubyinstallPackage