summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-10-15 12:23:40 +0900
committergit <svn-admin@ruby-lang.org>2025-10-15 07:15:47 +0000
commit8104c833ef47429ded66edf328fc7f9b57874cb4 (patch)
tree8fc74cd8452128ab6bdb74c62475bf89ebbe721a
parent1142abb1de10d8c47278d09a90d7c0cc713f59af (diff)
[rubygems/rubygems] Fixed wrong option message
https://github.com/rubygems/rubygems/commit/15be905c44
-rw-r--r--lib/bundler/cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 9c7c1217fb..b8a8be82c1 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -438,7 +438,7 @@ module Bundler
map aliases_for("cache")
desc "exec [OPTIONS]", "Run the command in context of the bundle"
- method_option :keep_file_descriptors, type: :boolean, default: true, banner: "Passes all file descriptors to the new processes. Default is true, and setting it to false is deprecated"
+ method_option :keep_file_descriptors, type: :boolean, default: true, banner: "Passes all file descriptors to the new processes. Default is true, and setting it to false is not permitted (removed)."
method_option :gemfile, type: :string, required: false, banner: "Use the specified gemfile instead of Gemfile"
long_desc <<-D
Exec runs a command, providing it access to the gems in the bundle. While using