summaryrefslogtreecommitdiff
path: root/lib/rubygems/vendor
AgeCommit message (Collapse)Author
2026-02-09Merge RubyGems/Bundler 4.0.6Hiroshi SHIBATA
2025-11-18Downgrade net-http 0.7.0 because JRuby is not workingHiroshi SHIBATA
2025-11-18Use released version of net-http-0.8.0Hiroshi SHIBATA
2025-11-18[ruby/rubygems] Update resolv-0.6.3Hiroshi SHIBATA
https://github.com/ruby/rubygems/commit/778426fb73
2025-11-18[ruby/rubygems] Update optparse-0.8.0Hiroshi SHIBATA
https://github.com/ruby/rubygems/commit/4e02243f66
2025-11-18[ruby/rubygems] Update timeout-0.4.4Hiroshi SHIBATA
https://github.com/ruby/rubygems/commit/b6deff99c9
2025-11-18[ruby/rubygems] Update URI-1.1.1Hiroshi SHIBATA
https://github.com/ruby/rubygems/commit/07f2daf51e
2025-10-23[ruby/rubygems] Bump up vendored uri to 1.0.4Hiroshi SHIBATA
https://github.com/ruby/rubygems/commit/bc77ec0bf2
2025-07-10[rubygems/rubygems] Update vendored resolv to 0.6.2Hiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/afbbc02763
2025-05-14Applied rake vendor:installHiroshi SHIBATA
2025-05-13Handle to look up CGI::EscapeExt instead of using LoadError. cgi/escape is ↵Hiroshi SHIBATA
provided snce Ruby 2.3 Notes: Merged: https://github.com/ruby/ruby/pull/13311
2025-05-09Use cgi/escape instead of cgi/utilHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13275
2025-03-03[rubygems/rubygems] Update vendored uri to 1.0.3Hiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/176dc7421c Notes: Merged: https://github.com/ruby/ruby/pull/12840
2025-01-28Ignore vendor folder for documentation just onceNobuyoshi Nakada
2024-12-24Merge RubyGems-3.6.2 and Bundler-2.6.2David Rodríguez
Notes: Merged: https://github.com/ruby/ruby/pull/12444
2024-12-18Bump vendored securerandom to 0.4.1David Rodríguez
2024-12-18Bump vendored timeout to 0.4.3David Rodríguez
2024-12-17Bump vendored resolv to 0.6.0David Rodríguez
2024-12-13Bump vendored uri to 1.0.2David Rodríguez
2024-12-13Bump vendored net-http to 0.6.0David Rodríguez
2024-12-13Bump vendored securerandom to 0.4.0David Rodríguez
2024-11-14Update vendored timeout to 0.4.2David Rodríguez
2024-11-14Update vendored securerandom to 0.3.2David Rodríguez
2024-11-14Update vendored resolv to 0.5.0David Rodríguez
2024-11-14Update vendored net-http to 0.5.0David Rodríguez
2024-11-14Update vendored optparse to 0.6.0David Rodríguez
2024-11-11Bump vendored uri to 1.0.1David Rodríguez
2024-10-10Update vendored net-httpSamuel Giddins
Signed-off-by: Samuel Giddins <segiddins@segiddins.me> Notes: Merged: https://github.com/ruby/ruby/pull/11860
2024-09-03Change automatiek to properly vendor securerandomDavid Rodríguez
Co-authored-by: Jean Boussier <jean.boussier@gmail.com>
2024-09-03Fix `gem exec rails new foo` failing on Ruby 3.2David Rodríguez
The default version of securerandom (0.2.2) gets activated by RubyGems, but does not match Rails requirements (>= 0.3), leading to an error like this: ``` $ gem exec rails new repro /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:2246:in `raise_if_conflicts': Unable to activate activesupport-7.2.1, because securerandom-0.2.2 conflicts with securerandom (>= 0.3) (Gem::ConflictError) from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:1383:in `activate' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:1421:in `block in activate_dependencies' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:1403:in `each' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:1403:in `activate_dependencies' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/specification.rb:1385:in `activate' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/core_ext/kernel_gem.rb:62:in `block in gem' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/core_ext/kernel_gem.rb:62:in `synchronize' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/core_ext/kernel_gem.rb:62:in `gem' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/commands/exec_command.rb:193:in `activate!' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/commands/exec_command.rb:73:in `execute' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/command.rb:326:in `invoke_with_build_args' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/command_manager.rb:255:in `invoke_command' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/command_manager.rb:194:in `process_args' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/command_manager.rb:152:in `run' from /Users/deivid/Code/rubygems/rubygems/lib/rubygems/gem_runner.rb:56:in `run' from /Users/deivid/code/rubygems/rubygems/exe/gem:12:in `<main>' ``` Vendoring our own securerandom fixes the issue since that way we avoid activating the gem internally.
2024-09-03Let automatiek convert requires that are indented to require_relative as wellDavid Rodríguez
2024-03-27Update vendored resolv to 0.4.0Hiroshi SHIBATA
2024-03-19Don't replace doc url for vendored filesHiroshi SHIBATA
2024-03-05[DOC] fix some commentscui fliter
Signed-off-by: cui fliter <imcusg@gmail.com>
2024-02-26[rubygems/rubygems] Use wrapper file for vendored tsortHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/93514afa28
2024-02-26[rubygems/rubygems] Rename wrapper files for vendored libraries with ↵Hiroshi SHIBATA
'vendored_' prefix https://github.com/rubygems/rubygems/commit/cfc908c8c1
2024-01-30[rubygems/rubygems] Update namespace Gem::Resolver::Molinillo to Gem::MolinilloHiroshi SHIBATA
https://github.com/rubygems/rubygems/commit/6c4caf3ab0
2024-01-30Move molinillo under the vendor directoryHiroshi SHIBATA
2024-01-30Move tsort under the vendor directoryHiroshi SHIBATA
2024-01-30Move timeout under the vendor directoryHiroshi SHIBATA
2024-01-30Move net-http under the vendor directoryHiroshi SHIBATA
2024-01-30Move net-protocol under the vendor directoryHiroshi SHIBATA
2024-01-30Move optparse under the vendor directoryHiroshi SHIBATA
2024-01-30Move resolv under the vendor directoryHiroshi SHIBATA
2024-01-29Removed duplicated license fileHiroshi SHIBATA
2024-01-29Vendor uri gem in RubyGemsDavid Rodríguez