summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* Add `bundle add` command to the main manpageTejas Bubane2017-05-311-0/+3
|
* Merge remote-tracking branch 'origin/master' into colby/stderr-featureColby Swandale2017-05-171-15/+0
|\ | | | | | | | | | | | | | | | | * origin/master: Avoid Rack 1.6.7 in specs for now Avoid re-building manpages each spec run [Travis] Use RubyGems 2.6.12 Ensure that manpages are always built when running specs [Rakefile] Generate man/index in man:build
| * [Rakefile] Generate man/index in man:buildSamuel Giddins2017-05-121-15/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Results in the following: ``` Gemfile(5) gemfile.5 bundle(1) bundle.1 bundle-add(1) bundle-add.1 bundle-binstubs(1) bundle-binstubs.1 bundle-check(1) bundle-check.1 bundle-clean(1) bundle-clean.1 bundle-config(1) bundle-config.1 bundle-exec(1) bundle-exec.1 bundle-gem(1) bundle-gem.1 bundle-info(1) bundle-info.1 bundle-init(1) bundle-init.1 bundle-inject(1) bundle-inject.1 bundle-install(1) bundle-install.1 bundle-lock(1) bundle-lock.1 bundle-open(1) bundle-open.1 bundle-outdated(1) bundle-outdated.1 bundle-package(1) bundle-package.1 bundle-platform(1) bundle-platform.1 bundle-pristine(1) bundle-pristine.1 bundle-show(1) bundle-show.1 bundle-update(1) bundle-update.1 bundle-viz(1) bundle-viz.1 ```
* | stderr feature flag is notw error_on_stderrColby Swandale2017-05-171-1/+1
| |
* | document stderr configColby Swandale2017-05-161-0/+2
|/
* Fix a typosKoichi ITO2017-05-032-2/+2
|
* [Documentation] RevisionDennis Suratna2017-04-271-5/+5
|
* [Documentation] Pristine documentationDennis Suratna2017-04-261-0/+13
|
* [AddDoc] RevisionDennis Suratna2017-04-251-6/+8
|
* [Documentation] Add documentationDennis Suratna2017-04-241-0/+27
|
* Add bundle binstubs to the main man pageAlessandro Dal Grande2017-04-041-0/+3
|
* Correct the config option name corresponding to --binstubsNoah Kantrowitz2017-03-291-1/+1
| | | This matches my experimental results at least.
* Fix indentation to match other lines.Noah Kantrowitz2017-03-281-1/+1
|
* Document that --retry works for update.Noah Kantrowitz2017-03-281-2/+5
| | | Also makes the --jobs doc a little closer to the copy from install.
* Auto merge of #5428 - DTrierweiler:master, r=segiddinsThe Bundler Bot2017-03-161-0/+3
|\ | | | | | | | | | | | | | | | | | | | | | | Adding the --key option for releasing private gems with gemstash In order to use the `rake release` command with a private gemstash server, I'd need the `--key` option described here: https://github.com/bundler/gemstash/blob/master/docs/gemstash-private-gems.7.md#pushing I added a quite unobtrusive method to check for an ENV variable and - if it's present - add the `--key` param. Final command would be: `GEM_KEY=test_key bundle exec rake release`
| * Documentation at the correct placeDaniel Trierweiler2017-03-151-7/+3
| |
| * Double quotes and small documentationDaniel Trierweiler2017-03-151-0/+7
| |
* | Update `Gemfile` docs' link targets for `:source`Justin Myers2017-02-271-2/+2
| | | | | | | | | | | | | | | | | | These two links don't go anywhere in the browser, most likely because 01fc34bebd128d758733261f16d9e9a8523d81d4 changed the text of those (and other) headers. As far as I know (from a quick search with `/\w+-)/`), these are the only two links with this problem.
* | Auto merge of #5374 - colby-swandale:bundle-info, r=indirectThe Bundler Bot2017-02-211-0/+17
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bundle info command This is a continuation of #5093 This PR adds a new command called `info` that is nearly identical to the `show` command, specifically `show <gem> --verbose`. Example: ``` › dbundler info rack * rack (2.0.1) Summary: a modular Ruby webserver interface Homepage: http://rack.github.io/ Path: /Users/colby/.gem/ruby/2.4.0/gems/rack-2.0.1 ``` There is also a option called `--path` that only prints the path to the gem ``` › dbundler info rack --path /Users/colby/.gem/ruby/2.4.0/gems/rack-2.0.1 ``` One noticeable difference between `info` and `show --verbose` is that i have removed the `outdated` functionality. This was made for several reasons: * There are currently problems with that functionality which have been raised in #5375 * We have a dedicated command called `outdated` for the user to get information about the outdated status of gems. * The outdated status requires an active internet connection and time to download the necessary information. I think not having to download anything and limiting `info` to just read information it already has would make for a more responsive and better user experience.
| * | fix info documentation that was referencing showColby Swandale2017-02-191-1/+1
| | |
| * | add bundle-info man pageColby Swandale2017-01-271-0/+17
| | |
* | | update wordingAndre Arko2017-02-171-6/+7
| | |
* | | Add documentation for mirror.fallback_timeout option.Sebastian Nowak2017-02-091-0/+12
| |/ |/|
* | Merge pull request #5348 from feministy/clean-check-man-pagesliz!2017-01-238-0/+160
|\ \ | | | | | | create man pages for missing commands
| * | :tophat: add other missing commands to man pagesLiz Abinante2017-01-228-2/+118
| | |
| * | :sparkle: new pages for andLiz Abinante2017-01-223-0/+44
| | |
* | | clean up platform docs for versionsLiz Abinante2017-01-221-62/+22
| | |
* | | Document all Bundler settingsseg-doc-settingsSamuel Giddins2017-01-211-0/+47
| | |
* | | [CLI] Warn when running an outdated bundler versionSamuel Giddins2017-01-141-0/+3
| | |
* | | Auto merge of #5284 - amatsuda:mri_25, r=segiddinsThe Bundler Bot2016-12-271-0/+8
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support :mri_25 platform and its variations The next ruby version is decided to be 2.5 🎉 https://github.com/ruby/ruby/commit/1a47fcadd675601c5b9c4e69d49def28fc3b61af I'm not requesting you the bundler team to rush for a new release for this, but I guess it's not too early to have this definition in master.
| * | | Support :mri_25 platform and its variationsAkira Matsuda2016-12-261-0/+8
| | | |
* | | | [PostitTrampoline] Rename env varsseg-platform-docsSamuel Giddins2016-12-261-2/+2
| | | |
* | | | [Docs] Link to existing command man pagesSamuel Giddins2016-12-261-2/+2
| | | |
* | | | [Docs] Add docs for trampoliningSamuel Giddins2016-12-261-0/+18
| | | | | | | | | | | | | | | | 🎉
* | | | [Docs] Address feedback regarding platformsSamuel Giddins2016-12-262-3/+11
| | | |
* | | | [Docs] Document using lock --add-platformSamuel Giddins2016-12-261-1/+10
| | | |
* | | | [Docs] Document disable_checksum_validationSamuel Giddins2016-12-261-0/+2
| | | |
* | | | [Docs] Document specific_platformSamuel Giddins2016-12-261-0/+3
| | | |
* | | | [Docs] Document force_ruby_platformSamuel Giddins2016-12-261-1/+3
|/ / /
* | | Auto merge of #5237 - smlx:patch-2, r=segiddinsThe Bundler Bot2016-12-171-1/+1
|\ \ \ | |/ / |/| | | | | Fix typo in man page.
| * | Fix typo in man page.smlx2016-12-071-1/+1
| | |
* | | Fix typo in man page.smlx2016-12-071-1/+1
|/ /
* | Auto merge of #5168 - colby-swandale:documentation-and-error-improvements, ↵Homu2016-11-171-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r=segiddins Documentation and error improvements This PR is just making a few small improvements to error messages, documentation and code indentation. Let me know what you think. Thanks!
| * | fix more missing highlights in bundle man pageColby Swandale2016-11-141-2/+2
| | |
* | | Fix x64_mingw_24. Typo in PR #5170Igor Zubkov2016-11-151-1/+1
| | |
* | | Add documentation around git HTTP(S) credentials configuration.Sean Arnold2016-11-151-0/+14
| | | | | | | | | | | | | | | Closes: #5173 Approved by: indirect
* | | Support :mri_23 platform and its variationsAkira Matsuda2016-11-151-0/+8
|/ /
* | Auto merge of #5108 - chrismo:cons_update_docs, r=indirectHomu2016-11-013-3/+295
|\ \ | | | | | | | | | | | | | | | [WIP] New patch level and conservative options documented. Fixes #4775.
| * | Add bundle-outdated man pagechrismo2016-10-311-0/+107
| | |
| * | Update bundle lock man pagechrismo2016-10-242-5/+40
| | |