summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Revert the additional changes from net-http-0.3.2Hiroshi SHIBATA2022-12-231-119/+18
|
* Revert the accidentally commit from erb-4.0.2Hiroshi SHIBATA2022-12-231-1/+1
| | | | | | Revert "[ruby/erb] Use a ruby-lang alias on spec.email" This reverts commit fa64889abbad727d31bb927604d87679825dcd37.
* Bump version to 1.6.2Hiroshi SHIBATA2022-12-231-1/+1
|
* Always issue deprecation warning when calling Regexp.new with 3rd positional ↵Jeremy Evans2022-12-221-1/+1
| | | | | | | | | | | | | | argument Previously, only certain values of the 3rd argument triggered a deprecation warning. First step for fix for bug #18797. Support for the 3rd argument will be removed after the release of Ruby 3.2. Fix minor fallout discovered by the tests. Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* Remove MJIT's private constants from docs [ci skip]Takashi Kokubun2022-12-223-3/+3
|
* [ruby/optparse] Bump version to 0.3.1Hiroshi SHIBATA2022-12-221-1/+1
| | | | https://github.com/ruby/optparse/commit/2a1e157ae1
* Put RubyVM::MJIT::Compiler under ruby_vm directory (#6989)Takashi Kokubun2022-12-213-0/+0
| | | [Misc #19250]
* [ruby/net-http] Adding links to referencesBurdetteLamar2022-12-211-8/+55
| | | | https://github.com/ruby/net-http/commit/71bae5c0fe
* [ruby/net-http] Adding links to referencesBurdetteLamar2022-12-211-0/+1
| | | | https://github.com/ruby/net-http/commit/e4df80f299
* [ruby/net-http] Adding links to referencesBurdetteLamar2022-12-211-11/+64
| | | | https://github.com/ruby/net-http/commit/df5a554fa8
* MJIT: Refactor Compiler#cast_offset (#6967)Mau Magnaguagno2022-12-201-3/+2
| | | Subtract max value from offset when sign bit is set, without string operations.
* [ruby/optparse] The encoding argument of `Regexp.new` has been ignored since 1.9Nobuyoshi Nakada2022-12-211-3/+16
| | | | https://github.com/ruby/optparse/commit/766f567405
* [ruby/irb] Version 1.6.2Takashi Kokubun2022-12-201-1/+1
| | | | https://github.com/ruby/irb/commit/a8ea9963c6
* [ruby/irb] Respect DLEXT to force-load debug.soTakashi Kokubun2022-12-201-4/+5
| | | | | | | (https://github.com/ruby/irb/pull/481) Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org> Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* [ruby/syntax_suggest] Bump version to 1.0.2Hiroshi SHIBATA2022-12-201-1/+1
| | | | https://github.com/ruby/syntax_suggest/commit/92ea00650a
* Merge RubyGems/Bundler masterHiroshi SHIBATA2022-12-208-47/+66
| | | | Pick from https://github.com/rubygems/rubygems/commit/ba3adad4d80038ffd7bea015da2f11d3e8a2ff82
* [rubygems/rubygems] fixMark Burns2022-12-201-3/+1
| | | | | | | | https://github.com/rubygems/rubygems/pull/6147 when --parseable and --groups used together https://github.com/rubygems/rubygems/commit/3b0b95c509
* [rubygems/rubygems] Turn `--ext` option into string. Deprecate usage without ↵Josef Šimánek2022-12-204-7/+44
| | | | | | | | explicit value. - this is preparation for onboarding Rust based extension gem generator https://github.com/rubygems/rubygems/commit/d32801bdbc
* [rubygems/rubygems] Regenerate bundler man pages for December 2022.Josef Šimánek2022-12-2029-29/+29
| | | | https://github.com/rubygems/rubygems/commit/17037fe32c
* [rubygems/rubygems] Use safe Marshal deserialization for dependency API ↵Josef Šimánek2022-12-202-3/+17
| | | | | | response. - adds Bundler#safe_load_marshal and Bundler::SAFE_MARSHAL_CLASSES listing safe classes to deserialize https://github.com/rubygems/rubygems/commit/e947c608cc
* [rubygems/rubygems] Fix crash when showing some resolution errorsDavid Rodríguez2022-12-201-2/+2
| | | | | | | If the conflict explanation includes empty ranges and version unions, Pub Grub was crashing. https://github.com/rubygems/rubygems/commit/eb360b77a2
* [rubygems/rubygems] Fix crash when building resolution errors with OR ↵David Rodríguez2022-12-201-7/+10
| | | | | | requirements https://github.com/rubygems/rubygems/commit/8f287479bc
* [rubygems/rubygems] Slight tweak to error message buildingDavid Rodríguez2022-12-201-3/+3
| | | | | | Let Pub Grub decide how the constraint should be displayed. https://github.com/rubygems/rubygems/commit/4f651b6429
* [rubygems/rubygems] Clarify flag descriptionMichael Siegfried2022-12-201-2/+2
| | | | | | | Prerelease versions are already considered in a certain circumstance, and the 'if updating' is redundant in the update case anyway. https://github.com/rubygems/rubygems/commit/8d68635f8c
* [rubygems/rubygems] Fix tiny typoMichael Siegfried2022-12-201-1/+1
| | | | https://github.com/rubygems/rubygems/commit/390e3e1ebd
* [rubygems/rubygems] Support for pre flag in `bundle update`Michael Siegfried2022-12-203-1/+13
| | | | | | | Passing this flag allows bumping to the current version, even if that version is prerelease. This works in concert with the current flags. https://github.com/rubygems/rubygems/commit/a6409e3509
* [rubygems/rubygems] Clarify segment equality checkMichael Siegfried2022-12-201-3/+2
| | | | https://github.com/rubygems/rubygems/commit/6624474c5a
* [rubygems/rubygems] Return early outside of loopMichael Siegfried2022-12-201-9/+6
| | | | | | | The conditions are not dependent on each spec and can be checked once at the beginning of the method. https://github.com/rubygems/rubygems/commit/086bc9433f
* [rubygems/rubygems] Add question marks to interrogative methodsMichael Siegfried2022-12-201-5/+5
| | | | https://github.com/rubygems/rubygems/commit/52da85e9ef
* [rubygems/rubygems] Cleanup intermediate artifacts after installing built ↵Eloy Espinaco2022-12-202-2/+4
| | | | | | extensions https://github.com/rubygems/rubygems/commit/98b6a959bd
* [rubygems/rubygems] Fix crash when lockfile is missing dependenciesDavid Rodríguez2022-12-202-32/+12
| | | | | | | | | | | | | We have a check for a corrupt lockfile right before installing. However, the check accounted for locked specs not satisfying locked dependencies, but not for locked specs missing for some locked dependencies. Instead of fixing this check, I decided to remove it in favor of automatically detecting the situation and re-resolve to automatically fix the lockfile rather than printing a warning but leave the problem there. https://github.com/rubygems/rubygems/commit/4a7a584252
* [rubygems/rubygems] Remove unused codeDavid Rodríguez2022-12-201-14/+0
| | | | https://github.com/rubygems/rubygems/commit/b88c43a28c
* [rubygems/rubygems] Detect circular dependency errorsDavid Rodríguez2022-12-202-0/+10
| | | | https://github.com/rubygems/rubygems/commit/a8348d271d
* [rubygems/rubygems] Remove dead logicDavid Rodríguez2022-12-201-6/+0
| | | | https://github.com/rubygems/rubygems/commit/950615405e
* [rubygems/rubygems] Extract a variable for consistencyDavid Rodríguez2022-12-201-1/+2
| | | | https://github.com/rubygems/rubygems/commit/3f4b1c7a01
* [ruby/did_you_mean] Bump version to 1.6.3Hiroshi SHIBATA2022-12-191-1/+1
| | | | https://github.com/ruby/did_you_mean/commit/f7703add76
* [ruby/net-http] Bump version to 0.3.2Hiroshi SHIBATA2022-12-191-1/+1
| | | | https://github.com/ruby/net-http/commit/b8bdb7248e
* [rubygems/rubygems] Add bundle lock --update --bundlerAlyssa Ross2022-12-182-2/+7
| | | | | | | | | | | | bundle lock --update can do everything that bundle update can do, but it doesn't actually install gems. This is especially useful for generating a lockfile on a machine that doesn't have the libraries available to be able to build native extensions. But, there was no parallel for bundle update --bundler. So let's add one. https://github.com/rubygems/rubygems/commit/7fc00bd2a5
* [ruby/net-http] Adding links to referencesBurdetteLamar2022-12-181-10/+55
| | | | https://github.com/ruby/net-http/commit/6dfe6f411a
* MJIT: Refactor BitField dereference byte and bitmask (#6955)Mau Magnaguagno2022-12-171-2/+2
| | | | Prefer Array#unpack1 and Enumerable#sum. I think the bitmask formula ``2 ** @width - 1`` would be clearer, but not faster for such small integers.
* [ruby/logger] Bump version to 1.5.3Hiroshi SHIBATA2022-12-161-1/+1
| | | | https://github.com/ruby/logger/commit/4e8d9e27fd
* [ruby/net-http] Enhanced RDoc for Net::HTTPBurdetteLamar2022-12-151-2/+17
| | | | https://github.com/ruby/net-http/commit/da626e4e42
* Merge RubyGems/Bundler masterHiroshi SHIBATA2022-12-154-28/+48
| | | | Pick from https://github.com/rubygems/rubygems/commit/084f7d1f21f6fc3e2bb685b7bda3653fb2891c6e
* [Bug #19189] Fallback to the default "pkg-config"Nobuyoshi Nakada2022-12-151-1/+1
|
* [ruby/net-http] [DOC] New doc for responses classesBurdette Lamar2022-12-141-69/+434
| | | | | | (https://github.com/ruby/net-http/pull/91) https://github.com/ruby/net-http/commit/d394404402
* [ruby/net-http] [DOC] Correct formatting in header.rbBurdette Lamar2022-12-141-8/+12
| | | | | | (https://github.com/ruby/net-http/pull/90) https://github.com/ruby/net-http/commit/d9d829ca53
* [ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar2022-12-141-10/+101
| | | | | | (https://github.com/ruby/net-http/pull/89) https://github.com/ruby/net-http/commit/86b84eb307
* [ruby/securerandom] Bump version to 0.2.2Hiroshi SHIBATA2022-12-141-1/+1
| | | | https://github.com/ruby/securerandom/commit/9e16b597f5
* [ruby/resolv-replace] Bump version to 0.1.1Hiroshi SHIBATA2022-12-141-1/+1
| | | | https://github.com/ruby/resolv-replace/commit/187e91d149
* [ruby/English] Bump version to 0.7.2Hiroshi SHIBATA2022-12-141-1/+1
| | | | https://github.com/ruby/English/commit/736f819b3b