aboutsummaryrefslogtreecommitdiffstats
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* [ruby/irb] Add command line option to select which completor to usetomoya ishida2023-11-091-0/+7
| | | | | | | | | | (https://github.com/ruby/irb/pull/754) * Add command line option to select which completor to use * Add test for completor argv https://github.com/ruby/irb/commit/1dec2708c9
* [Feature #19790] [DOC] Fix the manual page as crash reportNobuyoshi Nakada2023-09-251-19/+32
| | | | Also add missing `%f` and `%F`.
* [Feature #19790] Rename BUGREPORT_PATH as CRASH_REPORTNobuyoshi Nakada2023-09-251-5/+5
|
* Add `--bugreport-path` optionNobuyoshi Nakada2023-09-251-0/+7
| | | | It has precedence over the environment variable `RUBY_BUGREPORT_PATH`.
* Add "piping bug reports to a program" to the manual pageNobuyoshi Nakada2023-09-251-0/+9
|
* Add `RUBY_BUGREPORT_PATH` to the manual pageNobuyoshi Nakada2023-09-251-0/+33
|
* Change heap init environment variable namesPeter Zhu2023-08-301-3/+3
| | | | | | | | This commit changes RUBY_GC_HEAP_INIT_SIZE_{40,80,160,320,640}_SLOTS to RUBY_GC_HEAP_{0,1,2,3,4}_INIT_SLOTS. This is easier to use because the user does not need to determine the slot sizes (which can vary between 32 and 64 bit systems). They now just use the heap names (`GC.stat_heap.keys`).
* Add `--backtrace-limit` option to the man pageTom Stuart2023-07-161-0/+5
|
* Fix broken wiki links (#8002)Jemma Issroff2023-06-291-1/+1
| | | | Since [Misc #19679] migrated the wiki, these links should be updated to their new locations.
* [Bug #19685]: Add `-y` and `--yydebug` document to `--help`Yla Aioi2023-06-051-1/+1
| | | | Add -y option information to `--help` Fix a warning on the man page
* Add RUBY_GC_HEAP_INIT_SIZE_%d_SLOTS to pre-init pools granularlyJean Boussier2023-02-081-1/+6
| | | | | | | | The old RUBY_GC_HEAP_INIT_SLOTS isn't really usable anymore as it initalize all the pools by the same factor, but it's unlikely that pools will need similar sizes. In production our 40B pool is 5 to 6 times bigger than our 80B pool.
* [ruby/irb] Add description of IRB_LANG, IRBRC, and XDG_CONFIG_HOME to manKouhei Yanagita2022-10-051-2/+23
| | | | https://github.com/ruby/irb/commit/564bd91387
* [ci skip] Improve man page docs around --dump optionsMatt Valentine-House2022-06-281-19/+21
|
* [ruby/irb] Add help about extra doc dir optionaycabta2021-10-111-0/+4
| | | | https://github.com/ruby/irb/commit/5018f2cb99
* [ruby/irb] Add doc about "echo on assignment"aycabta2021-09-271-0/+10
| | | | https://github.com/ruby/irb/commit/5af637b3c1
* [ruby/irb] Add a space before left parenaycabta2021-09-271-1/+1
| | | | https://github.com/ruby/irb/commit/973bac83ff
* Add --autocomplete / --noautocomplete optionsaycabta2021-08-301-0/+8
|
* Man page: correct defaults for RUBY_THREAD_VM_STACK_SIZEAlan Wu2021-04-201-1/+1
| | | | See RUBY_VM_THREAD_VM_STACK_SIZE in vm_core.h.
* [DOC] Fix grammar: "is same as" -> "is the same as"Marcus Stollsteimer2021-01-051-1/+1
|
* Track Bundler master(2.3.0.dev) branch at ↵Hiroshi SHIBATA2021-01-0425-3158/+0
| | | | 55634a8af18a52df86c4275d70fa1179118bcc20
* Merge prepare version of Bundler 2.2.0Hiroshi SHIBATA2020-12-0850-2773/+27
|
* [DOC] Update -l option [ci skip]Nobuyoshi Nakada2020-11-301-1/+1
| | | | `-l` option has used `chomp!` since Ruby 2.5. [Bug #12926]
* Merge bundler-2.2.0.rc.2Hiroshi SHIBATA2020-10-1575-3323/+117
|
* bundle-package.* was removed at upstream repoHiroshi SHIBATA2020-09-233-206/+0
|
* [rubygems/rubygems] July man pagesDavid Rodríguez2020-07-1550-50/+50
| | | | https://github.com/rubygems/rubygems/commit/58d9a3de5b
* [rubygems/rubygems] Fix --ci flag manpage documentationFrank Lam2020-06-183-3/+3
| | | | https://github.com/rubygems/rubygems/commit/515effe8de
* [rubygems/rubygems] Rebuild man pages for bundle gemFrank Lam2020-06-183-2/+49
| | | | https://github.com/rubygems/rubygems/commit/b5a9cec1be
* [rubygems/rubygems] Rebuild bundler man pagesFrank Lam2020-06-057-263/+263
| | | | | | | | | | | | * Recently built man pages on my branch had odd whitespace/characters resulting from using the macOS installed version of groff (v1.19) and homebrew's (v1.24) * Followed the advice in this pull request: https://github.com/rubygems/rubygems/pull/3394 * Encountered invalid byte sequence sed error, found this link: https://lists.gnu.org/archive/html/groff/2014-10/msg00072.html https://github.com/rubygems/rubygems/commit/f379d1d70e
* [rubygems/rubygems] Fix bundle gem ignoring global gem.test configFrank Lam2020-06-0510-272/+296
| | | | | | | | | | | | | | | | | | | | | | | | | | * bundle gem previously ignored gem.test when passed empty -t flag, defaulting to RSpec * bundle gem will now ask user for test framework when passed empty -t flag and gem.test is set to false, but will not overwrite gem.test * thor option parsing for String types falls back to human name for nil, so setting lazy_default to nil won't work * https://github.com/erikhuda/thor/blob/c5161501e0cfac7a8c5b838a9c6084c275f03c0d/lib/thor/parser/options.rb#L224 Default to Bundler.settings["gem.test"] for empty --test Add shared examples for test framework to newgem spec Add examples for empty --test flag to newgem spec Simplify conditional for prompting test framework Follow naming conventions for bundler settings Add more descriptive test framework help text for bundle gem Update man pages for bundler https://github.com/rubygems/rubygems/commit/ab0785a09f
* [rubygems/rubygems] June man pagesDavid Rodríguez2020-06-0550-50/+50
| | | | https://github.com/rubygems/rubygems/commit/cea610e197
* Sync Bundler PR #3624Hiroshi SHIBATA2020-05-223-10/+0
|
* Update the bundler version with master branchHiroshi SHIBATA2020-05-1353-1216/+1222
|
* Merge bundler-2.1.4Hiroshi SHIBATA2020-01-0850-50/+50
|
* Fixed misspellingsNobuyoshi Nakada2019-12-201-1/+1
| | | | Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec.
* Prepare to release bundler-2.1.0Hiroshi SHIBATA2019-12-1550-50/+50
|
* Use singleline/multiline instead of readline/reidlineaycabta2019-11-211-6/+13
|
* Merge Bundler 2.1.0.pre.3Hiroshi SHIBATA2019-11-1151-379/+584
| | | | | | | | | | | | | | | Features: - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361) - Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias [#7389](https://github.com/bundler/bundler/pull/7389) - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394) Bugfixes: - Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374) - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385) - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388) - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393) - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416) - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)
* Update the latest documentation of bundlerHiroshi SHIBATA2019-09-1851-384/+384
|
* [bundler/bundler] Revert "Remove now meaningless setting"David Rodríguez2019-09-183-0/+9
| | | | | | This reverts commit 52c5a0eedec34b5d86464b3cf135dc2002486f1d. https://github.com/bundler/bundler/commit/b4cc36deb9
* [bundler/bundler] Remove mention to remembered optionsDavid Rodríguez2019-08-163-22/+15
| | | | | | And instead educate users on the preferred, non deprecated, way. https://github.com/bundler/bundler/commit/9cd6238da2
* [bundler/bundler] Document upcoming changes to remembered optionsTomoki Aonuma2019-08-163-131/+140
| | | | https://github.com/bundler/bundler/commit/a1c97fd7c3
* [bundler/bundler] Commit man pages to source controlDavid Rodríguez2019-08-1651-278/+293
| | | | | | | | | | | | | | | | This has the benefit that: * Allows the installation of bundler as a default gem from rubygems to include man pages. * Removes the need to build man pages during our tests. * Makes working with the manifest easier, because we only have source controlled files, and not a mix of source control and generated files. To make sure they never fall out of sync, we replace the previous `man:build` CI task with a `man:check` task that makes sure the generated man pages are up to date. https://github.com/bundler/bundler/commit/23de1d0177
* [bundler/bundler] Use a newer debugging gem in docsDavid Rodríguez2019-08-163-3/+3
| | | | | | So that the examples work in currently supported rubies. https://github.com/bundler/bundler/commit/b7d4556cde
* Update IRB man pageSho Ito2019-08-121-8/+36
|
* [bundler/bundler] Fix typo in binstubs documentationScott Tesler2019-08-031-1/+1
| | | | https://github.com/bundler/bundler/commit/88dbfa18b4
* [bundler/bundler] Fix `git` options examplesDavid Rodríguez2019-08-031-3/+3
| | | | https://github.com/bundler/bundler/commit/bda0fa02c4
* [bundler/bundler] Fix incorrect sectioning in `gemfile` man pageDavid Rodríguez2019-08-031-2/+1
| | | | https://github.com/bundler/bundler/commit/428f53bef0
* [bundler/bundler] Remove now meaningless settingDavid Rodríguez2019-08-031-2/+0
| | | | https://github.com/bundler/bundler/commit/52c5a0eede
* [bundler/bundler] Correct default cache pathIvo Wever2019-08-031-1/+1
| | | | | The default cache path is `vendor/cache`, not `vendor/bundle`. https://github.com/bundler/bundler/commit/49256bb3d2
* Merge bundler master from upstream.Hiroshi SHIBATA2019-06-099-105/+100
| | | | Pick from 8dd59e3ba97eb80a599f8149f31bf40773b69dc0