mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00

[Bug #19350] * Merge RubyGems-3.4.2 and Bundler-2.4.2 * Merge RubyGems-3.4.3 and Bundler-2.4.3 * Generate parser-text.rb of racc when sync it * Ignore LICENSE files of libraries vendored in rubygems [ci skip] * Adjust spec of bundler like as `sync_default_gems` [ci skip] * Fixed a typo * Removed vendored LICENSE file. * Update LEGAL sections for pub_grub * Merge RubyGems-3.4.4 and Bundler-2.4.4 * Merge RubyGems-3.4.5 and Bundler-2.4.5 Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
27 lines
638 B
Markdown
27 lines
638 B
Markdown
bundle-open(1) -- Opens the source directory for a gem in your bundle
|
|
=====================================================================
|
|
|
|
## SYNOPSIS
|
|
|
|
`bundle open` [GEM] [--path=PATH]
|
|
|
|
## DESCRIPTION
|
|
|
|
Opens the source directory of the provided GEM in your editor.
|
|
|
|
For this to work the `EDITOR` or `BUNDLER_EDITOR` environment variable has to
|
|
be set.
|
|
|
|
Example:
|
|
|
|
bundle open 'rack'
|
|
|
|
Will open the source directory for the 'rack' gem in your bundle.
|
|
|
|
bundle open 'rack' --path 'README.md'
|
|
|
|
Will open the README.md file of the 'rack' gem source in your bundle.
|
|
|
|
## OPTIONS
|
|
* `--path`:
|
|
Specify GEM source relative path to open.
|