aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [bundler/bundler] Always use `--backtrace` when invoking `gem` CLIDavid Rodríguez2019-08-171-1/+1
| | | | | | For debuggability. https://github.com/bundler/bundler/commit/ac3e8db658
* [bundler/bundler] Extract a `gem_bin` path helperDavid Rodríguez2019-08-172-1/+5
| | | | https://github.com/bundler/bundler/commit/8eedbecac0
* [bundler/bundler] Reuse `gem_command!` helperDavid Rodríguez2019-08-171-8/+4
| | | | https://github.com/bundler/bundler/commit/37d5dedffe
* [bundler/bundler] Remove more dead codeDavid Rodríguez2019-08-171-5/+1
| | | | https://github.com/bundler/bundler/commit/17d4d0de8e
* [bundler/bundler] Remove dead codeDavid Rodríguez2019-08-171-1/+1
| | | | https://github.com/bundler/bundler/commit/cae948f514
* [bundler/bundler] Remove unnecessary rubygems requireDavid Rodríguez2019-08-171-1/+1
| | | | https://github.com/bundler/bundler/commit/039604ff95
* [bundler/bundler] Use path helpers to find bundle binDavid Rodríguez2019-08-171-2/+1
| | | | https://github.com/bundler/bundler/commit/7985bb8e92
* [bundler/bundler] Fix bundle bin location in core repoDavid Rodríguez2019-08-172-2/+2
| | | | https://github.com/bundler/bundler/commit/9437568ab4
* [bundler/bundler] Reuse more shared path helpersDavid Rodríguez2019-08-173-18/+4
| | | | https://github.com/bundler/bundler/commit/79fdebd868
* [bundler/bundler] Remove unnecessary assignmentDavid Rodríguez2019-08-171-2/+2
| | | | https://github.com/bundler/bundler/commit/e483322519
* [bundler/bundler] Remove unnecessary `let`David Rodríguez2019-08-171-3/+2
| | | | | | Use shared helper instead. https://github.com/bundler/bundler/commit/ef55470cc6
* [bundler/bundler] Move `lib` helper together with path helpersDavid Rodríguez2019-08-172-4/+4
| | | | https://github.com/bundler/bundler/commit/f2df73bdb4
* [bundler/bundler] Reuse `lib` methodDavid Rodríguez2019-08-171-1/+0
| | | | https://github.com/bundler/bundler/commit/4589a57852
* [bundler/bundler] Remove duplicated methodDavid Rodríguez2019-08-174-8/+4
| | | | https://github.com/bundler/bundler/commit/afdacd62ac
* Support the current stable version of Ruby like 2.5 and 2.6.Hiroshi SHIBATA2019-08-171-2/+2
|
* Revert "`Gem.load_path_insert_index always returns non-nil index after Ruby 1.9"Hiroshi SHIBATA2019-08-171-1/+1
| | | | | | This reverts commit 260ef51a73c067599826c8ab110c53994c1b6226. This broke the stable versions of Ruby like 2.4 and 2.5
* Added comments for extended require by RubyGemsHiroshi SHIBATA2019-08-171-1/+3
|
* `Gem.load_path_insert_index always returns non-nil index after Ruby 1.9Hiroshi SHIBATA2019-08-171-1/+1
|
* Use the original require for test_race_exceptionHiroshi SHIBATA2019-08-171-2/+2
| | | | | The extension for require method with rubygems affects this test case. We need to keep this test for the original method.
* Try to continue on LoadError with gem_original_requireHiroshi SHIBATA2019-08-171-2/+6
|
* Keep the existance behavior with symlink pathHiroshi SHIBATA2019-08-171-1/+3
|
* Move fixture path to last pathHiroshi SHIBATA2019-08-171-1/+1
|
* Revert "Revert "[rubygems/rubygems] [Require] Ensure -I beats a default gem""Hiroshi SHIBATA2019-08-173-0/+54
| | | | This reverts commit 75d29db8f965893bb6ab38b9008abc80cdda246e.
* Clean sample code biorhythm (#2375)Kenichi Kamiya2019-08-171-5/+4
| | | | | | | | | | | * Standardize to load date libary code > git grep 'require .date.' | wc -l 179 > git grep 'require .date\.rb' | wc -l 1 * Simplify
* Simplify a sample code (#2374)Kenichi Kamiya2019-08-171-2/+2
|
* Use more different arguments in Fiber.yield documentation to make it clear ↵Iain Barnett2019-08-171-3/+3
| | | | | | | | | | | | (#2170) https://github.com/ruby/ruby/pull/2170#issuecomment-489880700 Documentation is for those who don't know, remember, or understand (to any degree) the language, it should attempt to be clear above all other things. The example given is needlessly unclear because if you use a block it's common for arguments to be reused on every entry to the block. In Fiber's case this is not so. First time round 10 goes in, 12 comes out. Second time round 14 goes in, 14 comes out… was that because 14 is 12 + 2 or because it's "the return value of the call to Fiber.yield". It's the latter because it says so but why does the example need to make anyone think the former? Using different numbers makes it immediately clear what's happening whether the description is there or not.
* NetBSD native support of explicit_bzero's like feature (#2145)David CARLIER2019-08-172-1/+8
|
* Fix typosKazuhiro NISHIYAMA2019-08-172-2/+2
|
* Added missing condition for test-bundler and test-bundled-gems.Hiroshi SHIBATA2019-08-171-0/+1
|
* Added test check to ubuntu on GitHub ActionsHiroshi SHIBATA2019-08-171-1/+8
|
* Hoisted out search_refined_methodNobuyoshi Nakada2019-08-171-42/+49
| | | | [Bug #16107]
* Search refinement module along nested usingsNobuyoshi Nakada2019-08-172-29/+55
| | | | [Bug #16107]
* Improve the doc example of `method_missing`OKURA Masafumi2019-08-171-3/+9
| | | | | | | | Improvements are: * Use `symbol` instead of `methId`, described in doc * Add `*args` following method signature * Rescue error in `roman_to_int` and calls `super`, recommended in doc * Call invalid `foo` method to Roman object to raise NoMethodError
* Disable fail-fast of GitHub ActionsTakashi Kokubun2019-08-173-0/+3
| | | | | | | This is default: true https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast When `make check` fails, we do not want to cancel `make test-bundler`.
* Revert "[rubygems/rubygems] [Require] Ensure -I beats a default gem"Hiroshi SHIBATA2019-08-173-54/+0
| | | | This reverts commit 00cd5d74cecb6aa4a184e57e2b8246ef6e45d458.
* Remove redundant each from `sum` example (#2190) [ci skip]OKURA Masafumi2019-08-171-1/+1
| | | | | It used to be `Enumerator#sum`, now it's range of string which calls `Enumerable#sum` and causes TypeError.
* Fixed Insecure Operation in requireHiroshi SHIBATA2019-08-171-1/+1
| | | | Caused by 00cd5d74ce
* * 2019-08-17 [ci skip]git2019-08-171-1/+1
|
* Move lib directory to the last of $LOAD_PATH on ruby repository.Hiroshi SHIBATA2019-08-171-0/+10
| | | | | | https://github.com/rubygems/rubygems/pull/1868 changes the behavior of require when it used with -I options. Therefore, the options of ruby repository was different from rubygems/rubygems.
* [rubygems/rubygems] Fixup #2844Hiroshi SHIBATA2019-08-171-1/+1
| | | | https://github.com/rubygems/rubygems/commit/5924286ae2
* [rubygems/rubygems] installer.rb - fix #windows_stub_scriptMSP-Greg2019-08-171-3/+3
| | | | | | use ruby_exe in heredocs instead of ruby.exe https://github.com/rubygems/rubygems/commit/9f1b7d6590
* [rubygems/rubygems] Do not mutate uri.query during s3 signature creationAlexander Pakulov2019-08-172-7/+10
| | | | https://github.com/rubygems/rubygems/commit/c0275ee537
* [rubygems/rubygems] Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap.Hiroshi SHIBATA2019-08-171-0/+2
| | | | https://github.com/rubygems/rubygems/commit/1133c2f700
* [rubygems/rubygems] Return `nil` to clarify return value is ignoredDavid Rodríguez2019-08-171-1/+1
| | | | https://github.com/rubygems/rubygems/commit/8702f59d32
* [rubygems/rubygems] Autoswitch to exact bundler version if presentDavid Rodríguez2019-08-173-1/+40
| | | | https://github.com/rubygems/rubygems/commit/bb02953a97
* [rubygems/rubygems] Don't unregister default specificationsDavid Rodríguez2019-08-172-13/+2
| | | | | | I think this should be more efficient? https://github.com/rubygems/rubygems/commit/a1de78104f
* [rubygems/rubygems] Fix removing unresolved default spec files from mapDavid Rodríguez2019-08-172-0/+21
| | | | https://github.com/rubygems/rubygems/commit/7964917bbc
* [rubygems/rubygems] Little refactorDavid Rodríguez2019-08-171-3/+5
| | | | | | | | There's already a method called `suffix_pattern`, that's different from this local variable. So, move the local variable to a `suffix_regexp` that clearly differenciates from `suffix_pattern`. https://github.com/rubygems/rubygems/commit/4ec69c48b9
* [rubygems/rubygems] Replace domain parameter in ↵bronzdoc2019-08-173-6/+6
| | | | | | Gem::Command#show_lookup_failure with a parameter to suppress suggestions https://github.com/rubygems/rubygems/commit/760b7d834f
* [rubygems/rubygems] Fix jruby issueDavid Rodríguez2019-08-171-2/+2
| | | | https://github.com/rubygems/rubygems/commit/fc3f722164