Class: Pod::Generator::EmbedFrameworksScript

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods/generator/embed_frameworks_script.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(frameworks_by_config, xcframeworks_by_config) ⇒ EmbedFrameworksScript



22
23
24
25
# File 'lib/cocoapods/generator/embed_frameworks_script.rb', line 22

def initialize(frameworks_by_config, xcframeworks_by_config)
  @frameworks_by_config = frameworks_by_config
  @xcframeworks_by_config = xcframeworks_by_config
end

Instance Attribute Details

#frameworks_by_configHash{String => Array<FrameworkPaths>} (readonly)



9
10
11
# File 'lib/cocoapods/generator/embed_frameworks_script.rb', line 9

def frameworks_by_config
  @frameworks_by_config
end

#xcframeworks_by_configHash{String => Array<XCFrameworkPaths>} (readonly)



14
15
16
# File 'lib/cocoapods/generator/embed_frameworks_script.rb', line 14

def xcframeworks_by_config
  @xcframeworks_by_config
end

Instance Method Details

#generateString



43
44
45
# File 'lib/cocoapods/generator/embed_frameworks_script.rb', line 43

def generate
  script
end

#save_as(pathname) ⇒ void

This method returns an undefined value.

Saves the resource script to the given pathname.



34
35
36
37
38
39
# File 'lib/cocoapods/generator/embed_frameworks_script.rb', line 34

def save_as(pathname)
  pathname.open('w') do |file|
    file.puts(script)
  end
  File.chmod(0755, pathname.to_s)
end