summaryrefslogtreecommitdiff
path: root/lib/bundler/vendor/securerandom
AgeCommit message (Collapse)Author
2025-01-28Ignore vendor folder for documentation just onceNobuyoshi Nakada
2024-12-18Bump vendored securerandom to 0.4.1David Rodríguez
2024-12-13Bump vendored securerandom to 0.4.0David Rodríguez
2024-11-14Update vendored securerandom to 0.3.2David Rodríguez
2024-09-03Vendor `securerandom` in Bundler as wellDavid Rodríguez
It is loaded by `Fetcher` so in most case it's fine. But if using `bundler/inline` and a gem need to be fetched, `securerandom` will be loaded and cause a conflict. Can be reproduced with: ```ruby require 'bundler/inline' gemfile do source 'https://rubygems.org' gem 'graphql', '~> 2.0' gem 'graphql-client', '~> 0.18' end require 'json' require 'graphql/client' require 'graphql/client/http' ``` Ref: https://github.com/rails/rails/pull/52473#issuecomment-2284667451 Co-authored-by: Jean Boussier <jean.boussier@gmail.com>