Class: Pod::Installer::PrebuiltSourceInstaller

Inherits:
PodSourceInstaller
  • Object
show all
Defined in:
lib/cocoapods-binary-ht/pod-binary/integration/source_installer.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args, **kwargs) ⇒ PrebuiltSourceInstaller

Returns a new instance of PrebuiltSourceInstaller.



4
5
6
7
# File 'lib/cocoapods-binary-ht/pod-binary/integration/source_installer.rb', line 4

def initialize(*args, **kwargs)
  @source_installer = kwargs.delete(:source_installer)
  super(*args, **kwargs)
end

Instance Method Details

#install!Object



13
14
15
16
# File 'lib/cocoapods-binary-ht/pod-binary/integration/source_installer.rb', line 13

def install!
  @source_installer.install!
  install_prebuilt_framework!
end

#prebuild_sandboxObject



9
10
11
# File 'lib/cocoapods-binary-ht/pod-binary/integration/source_installer.rb', line 9

def prebuild_sandbox
  @prebuild_sandbox ||= Pod::PrebuildSandbox.from_standard_sandbox(sandbox)
end