module Pod class JxedtPrebuildInstaller < Installer # rubocop:disable Metrics/ClassLength def installation_options # Skip integrating user targets for prebuild Pods project. @installation_options ||= Pod::Installer::InstallationOptions.new( super.to_h.merge(:integrate_targets => false) ) end end end