Sweta Sanghavi
4ed2757543
[rubygems/rubygems] Update gemspec based on provided github username when exists
...
* Conditionally set changelog_url if gh username passed
and enabled
* conditionally set homepage, source code uri, homepage uri when gh
username passed in
* update documentation to say username will also be used for gemspec file
1c1ada593b
2025-07-09 13:48:37 +09:00
David Rodríguez
3c552881d4
[rubygems/rubygems] Document that global_gem_cache
also caches compiled extensions
...
265f718be7
2025-07-07 11:53:14 +09:00
David Rodríguez
3eeffea28d
[rubygems/rubygems] Improve sentence
...
"locally to the installing Ruby installation" felt a bit confusing.
c950720719
2025-07-07 11:53:13 +09:00
David Rodríguez
6a5808965b
[rubygems/rubygems] Stop allowing calling #gem
on random objects
...
4b8570ae15
2025-07-07 11:53:12 +09:00
David Rodríguez
845e878f88
[rubygems/rubygems] Add default_cli_command
documentation
...
I suspect most experienced users won't like the change in defaults, so
document the setting to toggle back the current default.
93e2e2bef9
2025-07-07 11:53:12 +09:00
David Rodríguez
cd3389e5c2
[rubygems/rubygems] Cancel path_relative_to_cwd
change
...
It only affected the `--path` flag which is actually getting removed, so
I don't think it makes sense to make such change. The current behavior
is reasonable and I tried to codify it with a few more specs.
6f520eb146
2025-07-07 11:53:11 +09:00
David Rodríguez
9918ca1671
[rubygems/rubygems] Remove default_install_uses_path
setting
...
The previous default can already be configured with `bundle config
path.system true`.
cb483b79db
2025-07-07 11:53:00 +09:00
David Rodríguez
fef0051926
[rubygems/rubygems] Remove auto_clean_without_path
setting
...
There already different ways of toggling off this behavior, like setting
`bundle config clean false`, or configuring Bundler to install to system
gems with `bundle config path.system true`.
6daa09f60a
2025-07-07 11:52:58 +09:00
David Rodríguez
7f057e13e0
[rubygems/rubygems] Add a verbose
setting to enable verbose output for all commands
...
0aa1be946f
2025-07-02 10:34:19 +09:00
David Rodríguez
cac7644bdb
[rubygems/rubygems] Document the simulate_version
setting
...
1ffd83f6c2
2025-07-02 10:34:18 +09:00
David Rodríguez
daedebd64a
[rubygems/rubygems] Remove print_only_version_number
setting
...
I don't think it makes sense to make this tiny behavior change
configurable. If someone wants to parse version output, and we have a
public setting, they are going to need to accommodate their regexps to
both values of the setting.
In addition to this, I plan to enhance version output with a note about
"simulated version", and in that case, "print_only_version_number" would
no longer hold, since what we print will be more than that anyways.
So, I'd like to remove the setting and change the output in Bundler 4
with no way to opt out.
d84e9dcf09
2025-07-02 10:34:18 +09:00
David Rodríguez
d6bfb73fb6
[rubygems/rubygems] Update some reference to Bundler 3 to Bundler 4
...
53174e0aa6
2025-06-30 12:56:50 +09:00
David Rodríguez
3fdaa6a19c
[rubygems/rubygems] Fix typos in some documentation lists making them render incorrectly
...
19739ba71c
2025-06-12 08:40:50 +09:00
David Rodríguez
ca7bd59794
[rubygems/rubygems] Update man pages month
...
3e4687616a
2025-06-12 08:40:50 +09:00
Matthew Hively
21a14ea230
[rubygems/rubygems] Moved the REMEMBERING OPTIONS section to be after CONFIGURATION KEYS
...
Since the remembering options are discouraged, the preferred method should be explained first.
Slight tweak to wording
Fix documentation spec test as per suggested patch
9f082ccf31
2025-06-03 07:47:14 +09:00
Matthew Hively
f4a5247ce4
[rubygems/rubygems] Clarify how BUNDLE_DEPLOYMENT, BUNDLE_FROZEN and BUNDLE_PATH are connected
...
9ed20bddab
2025-06-03 07:47:14 +09:00
Jacob Atzen
63dbb2f8a2
[rubygems/rubygems] Update docs for with/without consistency
...
The with and without flags accepts both comma and space separated values.
b6149f61e3
2025-03-12 18:02:09 +09:00
Mateo
a98c3d229e
[rubygems/rubygems] docs(bundle-config): hint default group when using only option
...
c258e45b44
2025-03-03 15:52:35 +09:00
Josef Šimánek
29e3ee0568
[rubygems/rubygems] Bring man pages up to date
...
591d2c0503
2025-03-03 15:52:35 +09:00
David Rodríguez
1fae0d7256
Use ronn-ng again for documentation generation
...
We switched to nronn because ronn-ng felt abandoned, but it seems
it has activity again, so switch back.
2025-01-14 12:24:37 +09:00
David Rodríguez
d91ca85b97
[rubygems/rubygems] Bring man pages up to date
...
8288cfd3e0
2024-12-11 16:18:11 +00:00
David Rodríguez
db0c7be642
[rubygems/rubygems] Add a lockfile_checksums
configuration to include checksums in fresh lockfiles
...
50b9ef8589
2024-11-11 19:24:42 +00:00
David Rodríguez
a1148d4aad
[rubygems/rubygems] Cancel bundle console
deprecation
...
506a863b36
2024-11-11 12:49:26 +00:00
David Rodríguez
ec0d0449dd
[rubygems/rubygems] Remove confusing documentation
...
The first paragraph is misleading because command line flags that set
configuration are deprecated.
The second one is unnecessary because configuration precedence is
explained before the different configurations.
6cc64964ff
2024-10-30 14:20:52 +00:00
Jerome Dalbert
6b1268c7bf
[rubygems/rubygems] Clarify bundle install --quiet
documentation
...
Bundler always exits with a status code.
3a38bd0b12
2024-10-18 14:25:20 +00:00
Takuya Noguchi
2e5a7d768b
[rubygems/rubygems] Improve bundle add
manpage
...
* Fix synopsis for mutually exclusive options.
* Add more descriptive examples.
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
c0f1efda69
Co-authored-by: Jerome Dalbert <jerome.dalbert@gmail.com>
2024-09-04 13:57:38 +00:00
David Rodríguez
871ba3e9e3
[rubygems/rubygems] Add a note about "platforms" in Gemfile vs "platforms" in Gemfile.lock
...
0dd4bd59b4
2024-08-29 09:59:26 +00:00
Josef Šimánek
bfb4272d8a
[rubygems/rubygems] Regenerate bundler docs for June 2024.
...
72103ca1e8
2024-06-25 12:55:56 +00:00
Darren Kavanagh
2c8b2f5b55
[rubygems/rubygems] Clarify BUNDLE_USER_CONFIG is a file
...
0b284fc88c
2024-05-28 20:15:45 +00:00
Josef Šimánek
8bd6ae4c40
[rubygems/rubygems] Monthly man update for May 2024.
...
9ee7069841
2024-05-08 23:58:45 +00:00
David Rodriguez
bc652d7568
[rubygems/rubygems] Never write credentials to lockfiles
...
e8a363713e
2024-04-18 11:07:09 +09:00
Cody Cutrer
44b5c912da
[rubygems/rubygems] Allow installing plugins from path via CLI
...
Also bring the man page up to date.
a849bd6947
2024-03-27 11:34:46 +00:00
Hiroshi SHIBATA
d0786cde3f
[rubygems/rubygems] rake man:build
...
e0ef515732
2024-02-21 03:30:23 +00:00
Avdi Grimm
544c87d009
[rubygems/rubygems] Refer to underscores as underscores
...
aa3ae5d245
2024-01-08 21:45:25 +00:00
David Rodríguez
01a2a0abc6
[rubygems/rubygems] Migrate documentation to be generated with nronn
...
55281f0eaa
2023-12-08 16:01:01 +09:00
David Rodríguez
1c3aa4b977
[rubygems/rubygems] Add extra blank line to bundle outdated
docs
...
If it's not there, when migrating to `nronn`, generated man page is
messed up.
7161347648
2023-12-08 16:01:01 +09:00
Olle Jonsson
52c7e43b87
[rubygems/rubygems] Add missing --prefer-local to Synopsis in bundle-install.1.ronn
...
e956c5bbe4
2023-11-26 22:08:27 +00:00
Manu
6a0c13c1d6
[rubygems/rubygems] Update man page for bundle exec to reflect default flag value
...
`--keep-file-descriptors` is true by default.
b28e88e228
2023-10-06 05:38:21 +00:00
Manu
7433c8f7dd
[rubygems/rubygems] Clarify that bundle info
takes a gem name
...
09ef74ef73
2023-08-17 10:39:31 +00:00
Hiroshi SHIBATA
28c2136722
[rubygems/rubygems] Replaced remained local to lockfile
...
6ed69223d4
2023-08-02 09:56:13 +00:00
Hiroshi SHIBATA
dd1af4b22d
[rubygems/rubygems] Rename local to lockfile and global to system
...
456fd05d3a
2023-07-24 15:04:24 +09:00
David Rodríguez
0b0df03b0d
[rubygems/rubygems] Avoid printing using messages when version has not changed
...
9635a2fd74
2023-07-24 15:03:15 +09:00
Hiroshi SHIBATA
f16c880f77
[rubygems/rubygems] Introduce bundle config set version feature
...
c431a1df52
2023-07-13 11:36:03 +09:00
ParadoxV5
bd93602485
Sync man pages
...
Co-Authored-By: David Rodríguez <2887858+deivid-rodriguez@users.noreply.github.com>
2023-07-05 11:37:23 +00:00
Hiroshi SHIBATA
38fa8eb4cb
Merge rubygems/bundler master
...
Pick from e9304aed7e
2023-02-21 19:28:12 +09:00
Mark Doliner
a4e9606da4
[rubygems/rubygems] Remove stray word in bundle config man page.
...
There was an extra word ("with") in this sentence.
ad3de5126c
2023-01-01 15:04:43 +00:00
Josef Šimánek
eaf0157dd1
[rubygems/rubygems] Regenerate bundler man pages for December 2022.
...
17037fe32c
2022-12-20 13:15:02 +09:00
Takuya Noguchi
007946c27d
[rubygems/rubygems] Bundler: github DSL has used https protocol over git
...
This behavior change was done in Bundler 2.2.0.
https://github.com/rubygems/bundler/pull/7142
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
9510190be1
2022-10-18 07:54:32 +00:00
David Rodríguez
24fd2f73d0
Resync Bundler & RubyGems
2022-09-08 11:25:03 +09:00
Hiroshi SHIBATA
3eca1e438d
Merge 16c3535413
2022-09-05 14:37:12 +09:00