diff options
author | David RodrÃguez <[email protected]> | 2022-05-13 14:03:24 +0200 |
---|---|---|
committer | git <[email protected]> | 2024-09-10 02:50:47 +0000 |
commit | 07fa9e3a8f4246498ff143407aa5e8f8f49bcc9f (patch) | |
tree | 7a5eccaaa94babe7cc3ffc0328c6fd7a77e69ba7 /lib/bundler/inline.rb | |
parent | d6baa6258c394df9ef54282bc738a326396e06ab (diff) |
[rubygems/rubygems] Remove unnecessary verification
`DSL#to_definition` already verifies this.
https://github.com/rubygems/rubygems/commit/c596f0af83
Diffstat (limited to 'lib/bundler/inline.rb')
-rw-r--r-- | lib/bundler/inline.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bundler/inline.rb b/lib/bundler/inline.rb index edd2987d20..49e8e32616 100644 --- a/lib/bundler/inline.rb +++ b/lib/bundler/inline.rb @@ -46,7 +46,6 @@ def gemfile(install = false, options = {}, &gemfile) Bundler::Plugin.gemfile_install(&gemfile) if Bundler.feature_flag.plugins? builder = Bundler::Dsl.new builder.instance_eval(&gemfile) - builder.check_primary_source_safety Bundler.settings.temporary(deployment: false, frozen: false) do definition = builder.to_definition(nil, true) |