aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/other
Commit message (Collapse)AuthorAgeFilesLines
* Synchronize Bundler & RubyGems (#11071)David Rodríguez2024-06-282-44/+44
|
* [rubygems/rubygems] Rework `bundle gem` specs so that they work on WindowsDavid Rodríguez2024-05-241-1/+6
| | | | | | | | | | | | | | | | Most of the commands run by these specs actually prompt for user input but for some reason `Open3` outside of Windows ignores that and goes on with no user input. Windows does not like this. This commit refactors these specs so that: * They don't prompt for user input when not necessary. * They pass proper user input when necessary. As long as no user input is needed, most specs pass, so it allows to remove the `:readline` tag from most of them. https://github.com/rubygems/rubygems/commit/3dfabcdae4
* [rubygems/rubygems] Deprecate `bundle plugin install --local-git=`Cody Cutrer2024-03-181-0/+17
| | | | | | It's the exact same implementation as --git https://github.com/rubygems/rubygems/commit/18eb2418c6
* [rubygems/rubygems] Override initialize in bundle rubygems_ext for NameTupleMartin Emde2023-12-111-0/+20
| | | | https://github.com/rubygems/rubygems/commit/f63ce682d2
* [rubygems/rubygems] Use modern hashes consistentlyDavid Rodríguez2023-12-073-78/+78
| | | | https://github.com/rubygems/rubygems/commit/bb66253f2c
* [rubygems/rubygems] Fix advice in `bundle install --system` deprecationDavid Rodríguez2023-11-271-1/+1
| | | | https://github.com/rubygems/rubygems/commit/59a66e3560
* [rubygems/rubygems] Avoid some unnecessary quotes in remember flag ↵David Rodríguez2023-11-271-11/+11
| | | | | | deprecation message https://github.com/rubygems/rubygems/commit/3fd627e486
* [rubygems/rubygems] Simplify remembered flags deprecation messageDavid Rodríguez2023-11-271-3/+3
| | | | | | Configuration is now local by default. https://github.com/rubygems/rubygems/commit/6bc7709aa8
* [rubygems/rubygems] Remove no longer necessary workaround for old RubyGemsDavid Rodríguez2023-11-271-1/+1
| | | | https://github.com/rubygems/rubygems/commit/ed4eaefac0
* [rubygems/rubygems] Drop support for Ruby 2.6 and Ruby 2.7 in BundlerDavid Rodríguez2023-11-131-1/+1
| | | | https://github.com/rubygems/rubygems/commit/93619c97ff
* Merge RubyGems and Bundler masterHiroshi SHIBATA2023-01-101-1/+1
| | | | from https://github.com/rubygems/rubygems/commit/0635c1423db5d7c461d53bf0c3329bca75de7609
* Merge RubyGems/Bundler masterHiroshi SHIBATA2022-12-121-2/+1
| | | | from https://github.com/rubygems/rubygems/commit/bfb0ae69776069155d2092702bfbb5a12617d85a
* Merge rubygems/bundler HEADHiroshi SHIBATA2022-08-031-1284/+0
| | | | Pick from https://github.com/rubygems/rubygems/commit/8331e63263081a6aa690d8025d2957f30c4e814a
* Merge rubygems master from ↵Hiroshi SHIBATA2022-07-291-8/+8
| | | | https://github.com/rubygems/rubygems/commit/446cc57a7ccdf1924deb291be9571219e7ba8523
* [rubygems/rubygems] Bundler: change error/warning message for multiple ↵Takuya Noguchi2022-07-191-3/+3
| | | | | | | | global sources Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com> https://github.com/rubygems/rubygems/commit/316564b8fc
* Merge RubyGems and Bundler masterHiroshi SHIBATA2022-07-132-31/+31
|
* [rubygems/rubygems] Fix typo in multiple gemfiles warningSven Schwyn2022-02-101-2/+2
| | | | https://github.com/rubygems/rubygems/commit/bc69d19097
* [rubygems/rubygems] Use Gem::Platform.local instead of RUBY_PLATFORMNgan Pham2022-01-261-4/+4
| | | | | | | | | In certain places, we want to display the platform name with `Gem::Platform.local` instead of `RUBY_PLATFORM`. Fixes https://github.com/rubygems/rubygems/issues/5264 https://github.com/rubygems/rubygems/commit/bdd1848ae8
* [rubygems/rubygems] Cancel deprecation of custom git sourcesDavid Rodríguez2021-12-081-69/+0
| | | | https://github.com/rubygems/rubygems/commit/99cd6e0627
* [rubygems/rubygems] Clarify `bundle viz` deprecationDavid Rodríguez2021-11-221-1/+1
| | | | https://github.com/rubygems/rubygems/commit/7f22fe56b3
* [rubygems/rubygems] Use bundler-graph instead of bundler-vizHiroshi SHIBATA2021-11-081-1/+1
| | | | https://github.com/rubygems/rubygems/commit/a54cca13db
* [rubygems/rubygems] Fix urlharuuzion2021-11-061-1/+1
| | | | https://github.com/rubygems/rubygems/commit/6a5a80eff7
* [rubygems/rubygems] Trigger install command by default on removeJose Galisteo2021-09-171-0/+19
| | | | | | Closes https://github.com/rubygems/rubygems/issues/4889 https://github.com/rubygems/rubygems/commit/2b1754479c
* [rubygems/rubygems] Deprecate `bundle exec --no-keep-file-descriptors`David Rodríguez2021-08-311-0/+12
| | | | https://github.com/rubygems/rubygems/commit/591466d512
* [rubygems/rubygems] Explicitly define a global source for testsDaniel Niknam2021-07-272-3/+19
| | | | | | This is in preparation for deprecating source-less gemfiles. https://github.com/rubygems/rubygems/commit/d6493fa3e2
* Sync latest bundler & rubygems development versionDavid Rodríguez2021-07-071-63/+33
|
* Merge the master branch of BundlerHiroshi SHIBATA2021-04-151-3/+109
|
* Sync latest development version of bundler & rubygemsDavid Rodríguez2021-03-081-29/+29
|
* Merge prepare version of Bundler 2.2.0Hiroshi SHIBATA2020-12-081-0/+8
|
* Merge bundler-2.2.0.rc.2Hiroshi SHIBATA2020-10-151-5/+27
|
* [rubygems/rubygems] Remove unneeded trailing conditions on exitstatusDavid Rodríguez2020-07-151-8/+8
| | | | https://github.com/rubygems/rubygems/commit/27e0e4ecb6
* [rubygems/rubygems] Remove unnecessary assertions on exitstatusDavid Rodríguez2020-07-151-2/+0
| | | | | | | Since our helpers now raise by default if the subcommand fails, these will never actually fail and are not necessary. https://github.com/rubygems/rubygems/commit/6153b9321e
* Undeprecate the `--no-cache` flagDavid Rodríguez2020-06-181-1/+0
| | | | | This is not a remembered option, so it shouldn't have been deprecated. At least not for that reason.
* [rubygems/rubygems] s/install_gemfile!/install_gemfileDavid Rodríguez2020-06-182-9/+9
| | | | https://github.com/rubygems/rubygems/commit/4d1a0c465a
* [rubygems/rubygems] s/bundle!/bundleDavid Rodríguez2020-06-182-19/+19
| | | | https://github.com/rubygems/rubygems/commit/746a4b3d74
* [rubygems/rubygems] Make helpers raise by defaultDavid Rodríguez2020-06-184-58/+58
| | | | https://github.com/rubygems/rubygems/commit/ade0c441d5
* Fix most exec specsDavid Rodríguez2020-06-151-4/+4
| | | | | | | | | The `gem_command` helper was failing to require `support/hax.rb`, which takes care of making sure rubygems actually picks up the right `ruby` executable under ruby-core setup (`ENV["RUBY"]`). This caused binstubs to be generated with a wrong shebang, and that caused `bundle exec` to not work. The error message was pretty confusing though due to https://bugs.ruby-lang.org/issues/16952.
* [rubygems/rubygems] Deprecate the `--no-deployment` flagDavid Rodríguez2020-06-051-0/+1
| | | | | | | | | | | | And never recommend it inside CLI messages. This flag represents the default behaviour of `bundle install`, and the only reason it exists is to "override" previous `--deployment` flag usages which were silently remembered. So it should be deprecated just like all the other flags the rely on remembering their values across invocations. https://github.com/rubygems/rubygems/commit/40e50b7190
* Sync Bundler PR #3624 with HEAD commitsHiroshi SHIBATA2020-05-221-12/+13
|
* Marked the failing examples with the current master branch on ruby repositoryHiroshi SHIBATA2020-05-221-4/+4
|
* Sync Bundler PR #3624Hiroshi SHIBATA2020-05-222-26/+31
|
* Skip the examples for bundle exec with gem installationHiroshi SHIBATA2020-05-131-1/+1
|
* Update the bundler version with master branchHiroshi SHIBATA2020-05-132-297/+278
|
* spec/bundler/other/platform_spec.rb: skip an attempt to simulate JRubyYusuke Endoh2020-03-291-0/+1
|
* Prepare to release bundler-2.1.0Hiroshi SHIBATA2019-12-151-9/+9
|
* Merge Bundler 2.1.0.pre3 released versionHiroshi SHIBATA2019-11-132-7/+1
|
* Merge Bundler 2.1.0.pre.3Hiroshi SHIBATA2019-11-112-14/+17
| | | | | | | | | | | | | | | 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)
* Fixed up ccbfb054b1dcd06d30924c4a83af1bac75d78c31Hiroshi SHIBATA2019-09-181-1/+1
|
* [bundler/bundler] Fix remembered flag deprecation messageDavid Rodríguez2019-09-181-1/+1
| | | | | | It was suggested a deprecated command as a fix. https://github.com/bundler/bundler/commit/e330a9a34f
* [bundler/bundler] Deprecate `--path` flag to `bundle check`David Rodríguez2019-09-181-0/+22
| | | | https://github.com/bundler/bundler/commit/0a0e7cf5ec